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
{# SPDX-License-Identifier: Apache-2.0 OR MIT #}
{% block title %}{{ site.title | default('Site') }}{% endblock %}
{% if site.base_url %}{% endif %}
<!-- These pages are generated, carry no script, and load only same-origin
styles, so the policy can be stricter than an authored page's. -->
{% if page_description %}{% endif %}
{% if page_description %}{% endif %}
{% if site.base_url %}{% endif %}
{% if site.og_image %}{% endif %}
{% block head_extra %}{% endblock %}
<!-- Generated pages get the same first tab stop as authored ones; without
it a keyboard user lands in the navigation on every taxonomy page. -->
Skip to main content
{% block header %}
{{ site.name | default('Home') }}
{% endblock %}
{% block content %}{% endblock %}
{% block footer %}
© {{ site.name | default('') }}
{% endblock %}