Im using Headline theme
I’ve got a problem with display tag name (H1 html tag) on /documents
page.
When I uncomment {{#tag}} tag name is disappear both from /documents page and also /tag/{tag_name} page.
My tag.hbs file:
<main class="gh-main gh-outer">
<div class="gh-inner">
{{!-- {{#tag}} --}}
{{#unless feature_image}}
<section class="gh-pagehead">
<h1 class="gh-pagehead-title">{{tag.name}} {{plural pagination.page empty='' singular='' plural= "- Page %"}}</h1>
{{#if description}}
<div class="gh-pagehead-description">{{tag.description}}</div>
{{/if}}
</section>
{{/unless}}
{{!-- {{/tag}} --}}
<div class="gh-topic gh-topic-grid">
<div class="gh-topic-content gh-nonfeed">
{{!-- <div class="gh-topic-content "></div> --}}
{{#foreach posts limit="all"}}
{{> "aleo-tag-loop-grid"}}
{{/foreach}}
</div>
</div>
{{pagination}}
</div>
</main>
My routes.yaml looks like this:
collections:
/documents/:
permalink: /documents/{slug}/
template: tag
filter: tag:documents