-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtag.hbs
More file actions
32 lines (29 loc) · 1012 Bytes
/
tag.hbs
File metadata and controls
32 lines (29 loc) · 1012 Bytes
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}}
<div class="page-width">
<div class="page-header">
<h1>All posts with the tag of {{tag.name}}</h1>
<p>Here you will find all posts with the tag of {{tag.name}}</p>
</div>
<div class="page-with-sidebar">
<div>
{{#tag}}
<div class="card" style="max-width: 18rem;">
{{#if feature_image }}
<img class="card-img-top" src="{{img_url feature_image}}" alt="Picture for tag: {{name}}">
{{/if}}
<div class="card-body">
<h5 class="card-title">{{name}}</h5>
{{#if description}}<p class="card-text">{{description}}</p>{{/if}}
</div>
</div>
{{/tag}}
</div>
<div>
<div class="posts">
{{#foreach posts}}
{{> "post-card"}}
{{/foreach}}
</div>
</div>
</div>
</div>