You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
771 B
Handlebars

{{!< 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">
{{#get "tags" limit="all"}}
{{#foreach tags}}
<p>{{name}}</p>
{{/foreach}}
{{/get}}
{{!-- The tag below includes the post loop - partials/loop.hbs --}}
{{> "loop"}}
</main>