weflock/index.hbs

36 lines
1 KiB
Handlebars
Raw Normal View History

{{!< default}}
2017-05-15 16:03:47 -04:00
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
2013-08-20 12:53:02 -04:00
{{> header background=@site.cover_image}} {{!--Special header.hbs partial to generate the <header> tag--}}
2017-05-15 16:03:47 -04:00
<div class="inner">
<div class="site-header-content">
<h1 class="site-title">
{{#if @site.logo}}
2019-01-15 10:51:08 -05:00
<img class="site-logo" src="{{img_url @site.logo size="l"}}" alt="{{@site.title}}" />
2017-05-15 16:03:47 -04:00
{{else}}
{{@site.title}}
2017-05-15 16:03:47 -04:00
{{/if}}
</h1>
<h2 class="site-description">{{@site.description}}</h2>
2013-08-28 08:01:39 -04:00
</div>
2017-06-13 14:02:22 -04:00
{{> "site-nav"}}
2013-08-20 12:53:02 -04:00
</div>
</header>
2017-05-15 16:03:47 -04:00
{{!-- The main content area --}}
<main id="site-main" class="site-main outer">
2017-05-15 16:03:47 -04:00
<div class="inner">
2013-08-10 09:06:01 -04:00
2017-06-12 05:01:00 -04: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 16:03:47 -04:00
</div>
2015-02-28 07:34:58 -05:00
</main>