-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathtag.hbs
More file actions
20 lines (19 loc) · 635 Bytes
/
tag.hbs
File metadata and controls
20 lines (19 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{!< default}}
<main class="gh-main gh-outer">
{{#tag}}
<section class="gh-article gh-inner">
<header class="gh-article-header">
<h1 class="gh-article-title">{{name}}</h1>
{{#if description}}
<p class="gh-article-excerpt">{{description}}</p>
{{/if}}
{{> "feature-image"}}
</header>
</section>
{{/tag}}
<div class="gh-feed{{#match @custom.header_section_layout "!=" "Large background"}} gh-inner{{/match}}">
{{#foreach posts}}
{{> "loop"}}
{{/foreach}}
</div>
</main>