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

16 lines
426 B
HTML
Raw Normal View History

2022-06-10 11:52:54 +00:00
<!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>
2022-06-17 10:07:32 +00:00
{% block main %} {% endblock %}
2022-06-10 11:52:54 +00:00
{% include "common/components/footer.html" %}
</body>
</html>