blob: bfae3da48924dcd354b005dd21ac705cb6f59bc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% 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">
{% seo %}
{% if site.inc_after_meta %}
{% include {{ site.inc_after_meta }} %}
{% endif %}
|