blob: 2096f78a1c718b715bf7d0f43bd50e171e9d67e2 (
plain)
<!DOCTYPE html>
<html lang="{{lang}}">
<head>
<title>{% block title %}{% endblock title %}</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/style.css" />
{% block head %}{% endblock head %}
</head>
<body>
{% block content %}{% endblock content %}
<footer>
<div id="copyright">© 2023</div>
</footer>
</body>
</html>
|