-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathkusi-doc-blog.hbs
33 lines (25 loc) · 918 Bytes
/
kusi-doc-blog.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
{{!< 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 --}}
{{#post}}
<div class="mb-12 container-sm text-center max-w-xl mx-auto">
<h1 class="font-semibold mt-0 mb-6 text-gray-800">{{title}}</h1>
<p class="opacity-75">{{content}}</p>
</div>
{{/post}}
{{!-- Post Card - ./partials/post-card.hbs --}}
{{#foreach posts visibility="all"}}
{{> "post-card"}}
{{/foreach}}
</div>
{{pagination}}
</div>
{{!-- Footer ./partials/site-footer.hbs --}}
{{> "site-footer"}}