Files
Journal-ghost/tag.hbs
Sodbileg Gansukh 14d4a27778 Journal theme
2021-06-28 17:07:48 +08:00

27 lines
874 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="0 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>