forked from Hostea/dashboard
16 lines
439 B
HTML
16 lines
439 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>
|
||
|
<main>{% block main %} {% endblock %}</main>
|
||
|
{% include "common/components/footer.html" %}
|
||
|
</body>
|
||
|
</html>
|