-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
tag.hbs
executable file
·23 lines (23 loc) · 914 Bytes
/
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
{{!< default}}
{{! The tag above means - insert everything in this file into the {body} of the default.hbs template }}
<div class="site-content-wrap">
{{#tag}}
<div class="container-fluid">
<div class="cover-wrap {{#if feature_image}} has-image" style="background-image:url({{feature_image}});{{/if}}" data-animation="fade-in">
<div class="cover-inner text-center">
<h1 class="name d-inline-flex">{{name}}</h1>
<div class="post-count">{{plural ../pagination.total empty=(t "0 Post") singular=(t "1 Post") plural=(t "% Posts")}}</div>
{{#if description}}
<div class="description">
{{description}}
</div>
{{/if}}
</div>
</div>
</div>
{{/tag}}
<div class="post-list">
{{> loop}}
</div>
{{pagination}}
</div>