-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag.hbs
31 lines (29 loc) · 1 KB
/
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
{{!< default}}
{{^is "paged"}}
<div class="text-6xl lato-style font-extrabold">
{{tag.name}}
<div class="text-2xl lato-style font-light">A collection of {{pagination.total}} posts<br>
{{#if tag.description}}
{{tag.description}}
{{/if}}
</div>
</div>
{{/is}}
{{#foreach posts}}
<div class="text-4xl lato-style font-extrabold mt-4">
<a href="{{url}}" class="text-black no-underline hover:text-green-700 hover:no-underline btn-animate">{{title}}</a>
</div>
<div class="text-2xl lato-style font-light mt-2">
Posted {{#primary_author}}<a href="{{url}}">{{name}}</a>{{/primary_author}} on <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time> {{tags prefix=" on "}}
</div>
<div class="text-2xl book-style font-medium mt-2 mb-6">
{{excerpt}}
</div>
{{/foreach}}
{{#if pagination.prev}}
{{pagination}}
{{else}}
{{#if pagination.next}}
{{pagination}}
{{/if}}
{{/if}}