2016-06-12 16:00:30 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
{% include head.html %}
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body class="index">
|
|
|
|
{% include svg.html %}
|
|
|
|
<header class="head">
|
|
|
|
{% include header.html %}
|
|
|
|
{% include nav.html %}
|
|
|
|
</header>
|
|
|
|
{% include search.html %}
|
|
|
|
<section class="margin">
|
|
|
|
<div class="content">
|
|
|
|
<p class="switch">switch layout: <span id="grid">Grid</span> • <span id="classic">Classic</span></p>
|
|
|
|
{% if page.title %}<h1 class="title">{{ page.title }}</h1>{% endif %}
|
|
|
|
<div class="articles">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
2016-06-28 12:10:03 -07:00
|
|
|
<!-- {% include sidebar.html %} -->
|
2016-06-12 16:00:30 -07:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% include footer.html %}
|
|
|
|
<script src="{{ site.baseurl | replace: '//', '/' }}/js/build/global.min.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|