poka_ijo/templates/base.html.j2

26 lines
738 B
Django/Jinja

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="manifest" href="/appmanifest.json">
<title>{% block title %}Poka Ijo: Nearby Things{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body>
<main role="main">
{% block content %}{% endblock %}
</main>
<footer>
{% block footer %}
<hr/>
<p class="text-center">
All content &copy; 02021 Ryan Rix &lt;<a href="mailto:site@whatthfuck.computer">site@whatthefuck.computer</a>&gt;
</p>
{% endblock %}
</footer>
</body>
</html>