summaryrefslogtreecommitdiff
path: root/static/templates/base.html
blob: 021f95eb123af273fc93fa3fba90f401bbf7bc83 (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">&copy; 2023</div>
		</footer>
	</body>
</html>