53 lines
1.6 KiB
HTML
53 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html data-theme="auto" lang="{{ DEFAULT_LANG }}">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
{% include "includes/favicon.html" %}
|
|
|
|
<meta name="description" property="og:description" content="{% block metadesc %}{{ DEFAULT_METADESC | e }}{% endblock %}" />
|
|
<meta name="author" content="{{ AUTHOR }}" />
|
|
<meta name="generator" content="Pelican" />
|
|
<meta name="color-scheme" content="light dark" />
|
|
<meta name="theme-color" content="#525f7a" />
|
|
{% for css in STYLESHEET_FILES %}
|
|
<link rel="stylesheet" href="{{ SITEURL }}/theme/css/{{ css }}" />
|
|
{% endfor %}
|
|
<title>{% block title %}{{ SITENAME | e }}{% endblock %}</title>
|
|
{% block html_metadata %}{% endblock html_metadata %}
|
|
</head>
|
|
|
|
<body>
|
|
{% block site_header %}
|
|
<header><div id="jumbotron">{% include "includes/jumbotron.html" %}</div></header>
|
|
{% endblock site_header %}
|
|
|
|
<main class="container">
|
|
<div id="site-content" role="document">
|
|
{% block content_all %}
|
|
|
|
{% block content_header %}
|
|
<div class="extra-header">
|
|
<h1>{{ page.title }}</h1>
|
|
</div>
|
|
{% endblock content_header %}
|
|
|
|
{% block content_body %}
|
|
{% endblock content_body %}
|
|
|
|
{% block content_footer %}
|
|
{% endblock content_footer %}
|
|
|
|
{% endblock content_all %}
|
|
</div>
|
|
</main>
|
|
|
|
{% block site_footer %}
|
|
<footer id="site-footer">{% include "includes/footer.html" %}</footer>
|
|
{% endblock site_footer %}
|
|
</body>
|
|
<script src="{{ SITEURL }}/theme/js/SwitchColorMode.js"></script>
|
|
</html> |