freaku-homepage/base.j2.html

13 lines
345 B
HTML
Raw Normal View History

2024-08-03 22:49:09 -07:00
<!DOCTYPE html>
<head>
<meta charset=utf-8>
<title>{% block title %}{% endblock title %}</title>
<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>{{ self.title() }}</h1>
<main>
{% block content %}{% endblock content %}
</main>