dashboard/accounts/templates/common/components/base.html

16 lines
426 B
HTML

<!DOCTYPE html>
{% load static %}
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="{% static 'css/main.css' %}" />
<title>{% block title %} {% endblock %}</title>
{% include "common/components/meta.html" %}
</head>
<body>
<header>{% block nav %} {% endblock %}</header>
{% block main %} {% endblock %}
{% include "common/components/footer.html" %}
</body>
</html>