website/templates/base.html
tezlm 3517c338e5
fix the rename
This reverts commit bb1dbee306.
2024-01-26 17:38:20 -08:00

13 lines
281 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>{% block title %}unnamed{% endblock %}</title>
{% block head %}
<link rel="stylesheet" href="/style.css" />
{% endblock %}
</head>
<body>
{% block content %}{% endblock %}
</body>
</html>