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

27 lines
877 B
Handlebars

{{!< default}}
<main class="gh-main gh-canvas">
{{#tag}}
<section class="gh-pagehead">
<header class="gh-pagehead-content">
<h1 class="gh-tag-name gh-pagehead-title">{{name}}</h1>
<div class="gh-tag-description gh-pagehead-description">
{{#if description}}
{{description}}
{{else}}
A collection of {{plural ../pagination.total empty='zero issues' singular='% issue' plural='% issues'}}
{{/if}}
</div>
</header>
</section>
<div class="gh-feed">
{{#get "posts" filter="primary_tag:{{slug}}" limit="all"}}
{{#foreach posts}}
{{> loop}}
{{/foreach}}
{{/get}}
</div>
{{/tag}}
</main>