-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathtag.hbs
32 lines (29 loc) · 855 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
{{!< default}}
{{#tag}}
<section class="hero background-img is-large" style="background-image: url('{{img_url feature_image}}')">
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title has-text-white is-size-1 has-text-weight-bold">
{{name}}
</h1>
<h2 class="subtitle has-text-white">
{{description}}
</h2>
</div>
</div>
</section>
{{/tag}}
<section class="posts">
<div class="container">
{{!-- Latest Posts --}}
<div class="columns is-multiline">
{{#foreach posts }}
<div class="column is-12-mobile is-6-tablet is-4-widescreen is-6-desktop">
{{> post-card class="bottom-border"}}
</div>
{{/foreach}}
</div>
{{pagination}}
</div>
</section>