starchart/templates/components/base.html

15 lines
432 B
HTML
Raw Normal View History

2022-05-18 20:28:07 +05:30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="{{ assets.css }}" />
<title>{% block title %} {% endblock %} | Starchart </title>
2022-05-18 20:28:07 +05:30
</head>
<body>
<header>{% block nav %} {% endblock %}</header>
<main>{% block main %} {% endblock %}</main>
{% include "footer" %}
</body>
</html>