freaku-homepage/base.j2.html

14 lines
466 B
HTML
Raw Normal View History

2024-08-03 22:49:09 -07:00
<!DOCTYPE html>
<head>
<meta charset=utf-8>
<!-- {% block title %}{% endblock title %} -->
<title>{% block titletag %}{{ self.title() }}{% endblock titletag %}</title>
2024-08-03 22:49:09 -07:00
<meta name=viewport content="width=device-width, initial-scale=1.0">
<link rel=icon href="/favicon.png">
<link rel=stylesheet href="/common.css">
<body>
<h1>{% block titleheader %}{{ self.title() }}{% endblock titleheader %}</h1>
2024-08-03 22:49:09 -07:00
<main>
{% block content %}{% endblock content %}
</main>