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 --}}
|
|
|
|
|
2017-07-11 12:18:06 +02:00
|
|
|
{{!-- Top header --}}
|
|
|
|
<header class="top-header homepage-top-header">
|
|
|
|
{{> "header"}}
|
2017-06-08 14:36:32 +02:00
|
|
|
</header>
|
|
|
|
|
2017-07-11 12:18:06 +02:00
|
|
|
{{!-- All header backgrounds --}}
|
|
|
|
<div class="header-bg"></div>
|
|
|
|
<div class="header-overlay"></div>
|
|
|
|
<div class="below-header"></div>
|
|
|
|
|
|
|
|
{{!-- Header content --}}
|
|
|
|
<div class="header-text">
|
|
|
|
<div class="content">
|
|
|
|
Test
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2017-06-08 14:36:32 +02:00
|
|
|
{{!-- 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>
|