-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathdefault.html
34 lines (34 loc) · 981 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
{% include head_meta.html %}
<style type="text/css">
/* hack.css, MIT license, (c) 2016 EGOIST */
{% capture include_to_scssify -%}
{% include style.scss %}
{% endcapture -%}
{{ include_to_scssify | scssify }}
</style>
</head>
<body>
<div class="hack container">
{{content}}
</div>
<footer class="container site-footer">
<nav>
<p>
<a href="{{ "/feed.xml" | prepend: site.baseurl }}">RSS feed</a>
{% if site.author.twitter %}/
<a href="https://twitter.com/{{site.author.twitter}}">Follow me on Twitter</a>{% endif %}
</p>
<p>
<a href="{{site.license_url}}" rel="license">© Copyright {{ site.time | date:"%Y" }} {{site.author.name}}</a>
/
<a href="{{site.imprint_url}}">Imprint</a>
</p>
</nav>
</footer>
</body>
</html>