gitpad/templates/components/base.html

16 lines
444 B
HTML
Raw Normal View History

2022-02-20 20:51:13 +00:00
<!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>Gists</title>
<title>{% block title %} {% endblock %}</title>
</head>
<body>
2022-02-23 04:22:56 +00:00
<header>{% block nav %} {% endblock %}</header>
2022-02-20 20:51:13 +00:00
<main>{% block main %} {% endblock %}</main>
{% include "footer" %}
</body>
</html>