-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtag.hbs
35 lines (27 loc) · 996 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
24
25
26
27
28
29
30
31
32
33
34
35
{{!< default}}
{{!-- The tag above means: insert everything in this file
into the {body} of the default.hbs template --}}
{{!-- Class for <body> --}}
{{#contentFor "special_body_class"}}bg-gray-100{{/contentFor}}
{{!-- Header ./partials/site-header.hbs --}}
{{> "site-header"}}
<div class="section blog-posts kusi-blog">
<div class="section--inner w-full mx-auto max-w-3xl px-6">
{{!-- Header --}}
{{#tag}}
<div class="mb-12 container-sm text-center max-w-xl mx-auto">
<h1 class="font-semibold mt-0 mb-6 text-gray-800">{{name}}</h1>
{{#if description}}<p class="opacity-75">{{description}}</p>{{/if}}
</div>
{{/tag}}
{{!-- Post Card - ./partials/post-card.hbs --}}
{{#foreach posts visibility="all"}}
{{^has tag="docs"}}
{{> "post-card"}}
{{/has}}
{{/foreach}}
</div>
{{pagination}}
</div>
{{!-- Footer ./partials/site-footer.hbs --}}
{{> "site-footer"}}