2018-01-07 11:14:51 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% include "head.liquid" %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
{% include "header.liquid" %}
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<section class="docs">
|
|
|
|
<div class="inner">
|
|
|
|
<aside>
|
|
|
|
<p>2018</p>
|
|
|
|
<ul>
|
2018-01-13 06:44:38 +01:00
|
|
|
<li><a {%if page.permalink == "Blog-example"%}class="active"{%endif%} href="/blog/Blog-example.html">Blog Example</a></li>
|
2018-01-07 11:14:51 +01:00
|
|
|
</ul>
|
|
|
|
</aside>
|
2018-01-08 04:21:33 +01:00
|
|
|
<hr id="hr">
|
2018-01-07 11:14:51 +01:00
|
|
|
<main>
|
2018-01-13 06:44:38 +01:00
|
|
|
{{ page.content }}
|
2018-01-07 11:14:51 +01:00
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
{% include "footer.liquid" %}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|