2017-06-08 14:36:32 +02:00
|
|
|
{{!< default}}
|
|
|
|
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
|
|
|
|
|
|
|
|
{{!-- The big featured header --}}
|
2017-06-08 15:24:27 +02:00
|
|
|
<header class="main-header">
|
2017-06-08 19:07:32 +02:00
|
|
|
<div class="main-me">
|
|
|
|
hey
|
2017-06-08 14:36:32 +02:00
|
|
|
</div>
|
2017-06-08 16:38:39 +02:00
|
|
|
<a class="scroll-down icon-arrow-left" href="#content"><span class="hidden">Scroll Down</span></a>
|
2017-06-08 14:36:32 +02:00
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- The main content area on the homepage --}}
|
|
|
|
<main id="content" class="content" role="main">
|
|
|
|
|
2017-06-08 19:07:32 +02:00
|
|
|
{{#get "tags" limit="all"}}
|
|
|
|
{{#foreach tags}}
|
|
|
|
<p>{{name}}</p>
|
|
|
|
{{/foreach}}
|
|
|
|
{{/get}}
|
|
|
|
|
2017-06-08 14:36:32 +02:00
|
|
|
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
|
|
|
|
{{> "loop"}}
|
|
|
|
|
|
|
|
</main>
|