-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag.hbs
executable file
·31 lines (27 loc) · 1.03 KB
/
tag.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{{!< default}}
{{!-- The tag above means - insert everything in this file into the {body} of the default.hbs template --}}
{{!-- The main content area on the tag page --}}
<main class="site-main">
<div class="site-content">
{{#tag}}
<header class="cover archive-header">
{{#if feature_image}}
<div class="cover-bg" style="background-image: url({{feature_image}})"></div>
{{/if}}
<div class="cover-content">
<div class="inner">
<div class="archive-meta">{{plural ../pagination.total empty=(t "No posts tagged") singular=(t "% post tagged") plural=(t "% posts tagged")}}</div>
<h1 class="archive-title">{{name}}</h1>
{{#if description}}
<p class="archive-description">{{description}}</p>
{{/if}}
</div><!-- .inner -->
</div><!-- .cover-content -->
</header><!-- .cover -->
{{/tag}}
<div class="inner-wide">
{{!-- The tag below includes the post loop - partials/loop-archive.hbs --}}
{{> "loop-archive"}}
</div><!-- .inner-wide -->
</div><!-- .site-content -->
</main><!-- .site-main -->