forked from sergiokopplin/indigo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
default.html
executable file
·47 lines (40 loc) · 1.25 KB
/
default.html
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
---
layout: compress
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1">
<meta name=viewport content="width=device-width, initial-scale=1">
{% seo %}
<link rel="canonical" href="{{ site.url }}{{ page.url | replace:'index.html','' }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title }}" href="{{ site.url }}{{ "/feed.xml" }}" />
<style>
{% capture scss_sheet %}
{% include styles.scss %}
{% if site.animate %}
{% include animations.scss %}
{% endif %}
{% endcapture %}
{{ scss_sheet | scssify }}
</style>
</head>
<body>
<div class="wrapper-{% if site.width == "normal" %}normal{% elsif site.width == "large" %}large{% endif %}">
{% if page.tag %}
<div class="post">
{% else %}
{% if showHeader != true %}
<div class="page {{ page.title | downcase }}">
{% else %}
<div class="{{ page.title | downcase }}">
{% endif %}
{% endif %}
{{ content }}
</div>
</div>
{% include icons.html %}
{% include analytics-google.html %}
</body>
</html>