blob: 141ab05167f3cbd2260e1850875526c8fba89886 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% if site.inc_before_meta %}
{% include {{ site.inc_before_meta }} %}
{% endif %}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width">
<title>{{ site.title | default: site.github.repository_name }} by {{ site.github.owner_name }}</title>
{% if site.inc_after_meta %}
{% include {{ site.inc_after_meta }} %}
{% endif %}
|