ID: fe0f782d6cc44a6276891b42c7141dd2499e67d7
16 lines
—
517B —
View raw
| {# This is the "base" HTML that every other page is supposed to extend. It contains
the basic HTML structure of a page.
#}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %} · DOKK</title>
<link href="/static/css/dokk.css" rel="stylesheet">
{% block stylesheets %}{% endblock %}
</head>
<body>{% block body %}{% endblock %}</body>
</html>
|