my_blog/templates/base.html

19 lines
368 B
HTML
Executable File

<!doctype html>
<html lang="en">
<head>
{% include "base_head_inner.html" %}
{% block page_specific_head %}{% endblock page_specific_head %}
</head>
<body class="dark-theme" onload="first_load()">
{% include "header.html" %}
{% include "accessibility_options.html" %}
{% block page_content %}{% endblock page_content%}
{% include "footer.html" %}
</body>
</html>