casper-i18n/index.hbs

37 lines
1.1 KiB
Handlebars
Raw Permalink Normal View History

{{!< default}}
2017-05-15 21:03:47 +01:00
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
2013-08-20 18:53:02 +02:00
2017-05-15 21:03:47 +01:00
{{!-- The big featured header, it uses blog cover image as a BG if available --}}
<header class="site-header outer {{#if @blog.cover_image}}" style="background-image: url({{@blog.cover_image}}){{else}}no-cover{{/if}}">
<div class="inner">
<div class="site-header-content">
<h1 class="site-title">
{{#if @blog.logo}}
<img class="site-logo" src="{{@blog.logo}}" alt="{{@blog.title}}" />
{{else}}
{{@blog.title}}
{{/if}}
</h1>
<h2 class="site-description">{{@blog.description}}</h2>
2013-08-28 14:01:39 +02:00
</div>
2017-06-13 19:02:22 +01:00
{{> "site-nav"}}
2013-08-20 18:53:02 +02:00
</div>
</header>
2017-05-15 21:03:47 +01:00
{{!-- The main content area --}}
<main id="site-main" class="site-main outer">
2017-05-15 21:03:47 +01:00
<div class="inner">
2013-08-10 15:06:01 +02:00
2017-06-12 10:01:00 +01:00
<div class="post-feed">
{{#foreach posts}}
{{!-- The tag below includes the markup for each post - partials/post-card.hbs --}}
{{> "post-card"}}
{{/foreach}}
</div>
2017-05-15 21:03:47 +01:00
</div>
2015-02-28 14:34:58 +02:00
</main>