dork.dev/templates/base.html

35 lines
765 B
HTML

<!DOCTYPE html>
{% include "love.html" %}
<html lang="en">
<head>
<meta charset="utf-8">
<title>
{% if section is defined and section.title is defined and section.title is string %}
{{ section.title }} -
{% elif page is defined and page.title is defined and page.title is string %}
{{ page.title }} -
{% endif %}
{{ config.extra.site_title }}
</title>
{% include "head.html" %}
</head>
<body>
<div class="wrapper">
<header>
{% include "header.html" %}
</header>
<main>
{% block content %} {% endblock content %}
</main>
<footer>
{% include "footer.html" %}
</footer>
</div>
{% include "nonoscript.html" %}
</body>
</html>