forked from are0h/TheBadSpace
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
299 B
Plaintext
19 lines
299 B
Plaintext
2 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>
|
||
|
{% block title %}
|
||
|
{{ title }}
|
||
|
{% endblock %}
|
||
|
</title>
|
||
|
{% block stylesheets %}{% endblock %}
|
||
|
</head>
|
||
|
<body>
|
||
|
<main>
|
||
|
{% block main %}{% endblock %}
|
||
|
</main>
|
||
|
{% block javascripts %}{% endblock %}
|
||
|
</body>
|
||
|
</html>
|