chrg.nl/index.hbs

33 lines
771 B
Handlebars
Raw Normal View History

{{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{!-- Top header --}}
<header class="top-header homepage-top-header">
{{> "header"}}
</header>
{{!-- 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>
{{!-- 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}}
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
</main>