-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.hbs
33 lines (32 loc) · 985 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
{{!< default}}
<div class="container spacetop">
{{#tag}}
{{#has slug="artister"}}
{{else}}
<section class="tag-list">
<h1 id="paintBrushBg">{{name}}</h1>
{{#if description}}
<section class="post-content">
{{description}}
</section>
{{/if}}
</section>
<hr />
{{/has}}
{{/tag}}
<article class="center-content">
<div class="row">
{{#foreach posts}}
{{#if feature_image}}
<div class="col-md-4">
<a href="{{url}}">
<img class="bl-img-card"
src="{{img_url feature_image }}"
alt="{{title}}" />
</a>
</div>
{{/if}}
{{/foreach}}
</div>
</article>
</div>