44 lines
1.7 KiB
Handlebars
44 lines
1.7 KiB
Handlebars
{{!< default}}
|
|
|
|
{{! The comment above "< default" means - insert everything in this file into
|
|
the {body} of the default.hbs template, which contains our header/footer. }}
|
|
|
|
{{! The big featured header on the homepage, with the site logo and description }}
|
|
<header class="main-header {{#if @blog.cover}}" style="background-image: url({{@blog.cover}}){{else}}no-cover{{/if}}">
|
|
<nav class="main-nav overlay clearfix">
|
|
{{#if @blog.logo}}<a class="blog-logo" href="{{@blog.url}}"><img src="{{@blog.logo}}" alt="Blog Logo" /></a>{{/if}}
|
|
<a class="subscribe-button icon-feed" href="{{@blog.url}}/rss/">Subscribe</a>
|
|
</nav>
|
|
<div class="vertical">
|
|
<div class="main-header-content inner">
|
|
<h1 class="page-title">{{@blog.title}}</h1>
|
|
<h2 class="page-description">{{@blog.description}}</h2>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
{{! The main content area on the homepage }}
|
|
<main class="content" role="main">
|
|
|
|
{{! Previous/next page links - only displayed on page 2+ }}
|
|
<div class="extra-pagination inner">
|
|
{{pagination}}
|
|
</div>
|
|
|
|
{{! Each post will be output using this markup }}
|
|
{{#foreach posts}}
|
|
<article class="{{post_class}}">
|
|
<header class="post-header">
|
|
<span class="post-meta"><time datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMM YYYY"}}</time> {{tags prefix="on "}}</span>
|
|
<h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
|
|
</header>
|
|
<section class="post-excerpt">
|
|
<p>{{excerpt}} <a class="read-more" href="{{url}}">»</a></p>
|
|
</section>
|
|
</article>
|
|
{{/foreach}}
|
|
|
|
{{! Previous/next page links - only displayed on every page }}
|
|
{{pagination}}
|
|
|
|
</main> |