2018-01-07 04:00:34 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% include "head.liquid" %}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
{% include "header.liquid" %}
|
|
|
|
</header>
|
|
|
|
<main>
|
2018-01-07 11:14:51 +01:00
|
|
|
<section class="blog">
|
2018-01-07 04:00:34 +01:00
|
|
|
<div class="inner">
|
|
|
|
<aside>
|
|
|
|
<p>Basics</p>
|
|
|
|
<ul>
|
2018-01-07 11:14:51 +01:00
|
|
|
<li><a {%if route == "Basics-example"%}class="active"{%endif%} href="/blog/Basics-example.html">Basics Example</a></li>
|
2018-01-07 04:00:34 +01:00
|
|
|
</ul>
|
|
|
|
<p>Reference</p>
|
|
|
|
<ul>
|
2018-01-07 11:14:51 +01:00
|
|
|
<li><a {%if route == "Reference-example"%}class="active"{%endif%} href="/blog/Reference-example.html">Reference Example</a></li>
|
2018-01-07 04:00:34 +01:00
|
|
|
</ul>
|
|
|
|
<p>Advance</p>
|
|
|
|
<ul>
|
2018-01-07 11:14:51 +01:00
|
|
|
<li><a {%if route == "Advance-example"%}class="active"{%endif%} href="/blog/Advance-example.html">Advance Example</a></li>
|
2018-01-07 04:00:34 +01:00
|
|
|
</ul>
|
|
|
|
<p>Misc</p>
|
|
|
|
<ul>
|
|
|
|
<li><a {%if route == "Misc-example"%}class="active"{%endif%} href="/docs/Misc-example.html">Misc Example</a></li>
|
|
|
|
</ul>
|
|
|
|
</aside>
|
|
|
|
<main>
|
|
|
|
{{ content }}
|
|
|
|
</main>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
|
|
{% include "footer.liquid" %}
|
|
|
|
</footer>
|
|
|
|
</body>
|
|
|
|
</html>
|