blob: dab9a866108f44ca8aafc0f168506569a4e04984 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<head>
{% if site.inc_before_head %}
{% include {{ site.inc_before_head }} %}
{% endif %}
{% include git-wiki/sections/head/meta.html %}
{% include git-wiki/sections/head/scripts.html %}
{% include git-wiki/sections/head/styles.html %}
{% if site.inc_after_head %}
{% include {{ site.inc_after_head }} %}
{% endif %}
</head>
|