blob: 9d288c834724a3d3bb074c51af338ec38963d206 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
{% from "config.html" import theme with context %}
<!DOCTYPE html>
<html>
<head>
{% block head %}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>{% if page.title %}{{ page.title }} — {% endif %}{{ config.site_name }}</title>
<link rel="stylesheet" href="{{ base_url }}/css/alabaster.css" type="text/css">
{% for path in extra_css %}
<link href="{{ path }}" rel="stylesheet">
{% endfor %}
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
{% block extrahead %}{% endblock %}
{% if page.is_homepage %}
<meta name="ocs-site-verification" content="d0aea87c6668017b27a1bab9f1f4ff5c" />
{% endif %}
{% endblock %}
</head>
<body>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
{% block content %}
{{ page.content }}
{% if page.is_homepage and theme.homepage_nav %}
{% include "inc/homepage_nav.html" %}
{% endif %}
{% endblock %}
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
{% if page.is_homepage %}
{% for sidebar in theme.homepage_sidebars %}
{% include "sidebars/%s.html" % sidebar %}
{% endfor %}
{% else %}
{% for sidebar in theme.sidebars %}
{% include "sidebars/%s.html" % sidebar %}
{% endfor %}
{% endif %}
</div>
</div>
<div class="clearer"></div>
</div>
{% block footer %}
<div class="footer">
<a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0">CC BY-NC 4.0 unless noted otherwise</a> | feedback >> fkfd at fkfd dot me
</div>
{% endblock %}
{% if page.is_homepage %}
<a hidden rel="me" href="https://eattherich.club/@fkfd">Mastodon</a>
{% endif %}
<!--
MkDocs version : {{ mkdocs_version }}
Docs Build Date UTC : {{ build_date_utc }}
-->
</body>
</html>
|