Files
Journal-ghost/index.hbs
Sodbileg Gansukh a392f54fa4 New theme
2021-06-25 14:27:19 +08:00

45 lines
1.3 KiB
Handlebars

{{!< default}}
<main class="gh-main gh-canvas">
<section class="gh-pagehead">
<header class="gh-pagehead-content">
<h1 class="gh-pagehead-title">Archive</h1>
<div class="gh-pagehead-description">
{{#if description}}
{{description}}
{{else}}
A collection of {{plural pagination.total empty='zero issues' singular='% issue' plural='% issues'}}
{{/if}}
</div>
</header>
</section>
{{#get "posts" filter="featured:true" limit="all" as |featured|}}
{{#if featured}}
<section class="gh-section gh-section-featured">
<h3 class="gh-section-title"><span>Featured</span></h3>
<div class="gh-featured">
{{#foreach featured}}
{{> loop}}
{{/foreach}}
</div>
</section>
{{/if}}
{{/get}}
<section class="gh-section">
<h3 class="gh-section-title"><span>Latest</span></h3>
<div class="gh-feed">
{{#get "posts" limit="all"}}
{{#foreach posts}}
{{> loop}}
{{/foreach}}
{{/get}}
</div>
</section>
{{!-- <button class="gh-loadmore">Load more</button> --}}
</main>