-
Notifications
You must be signed in to change notification settings - Fork 1
/
tag.hbs
49 lines (40 loc) · 1.25 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{!< default}}
{{!--
Default tag archive.
Parameters that you can change:
* count = number of posts
* layout = (list,grid)
* showHeader = (true, false)
* showExcerpt= (true, false)
* showPrimaryAuthor = (true,false)
* showPublishedAt = (true,false)
* showAccessMeta = (true,false)
* showPrimaryTag = (true,false)
* showFeaturedMeta = (true,false)
* showReadingTime = (true,false)
* showImageHoverAnimation = (true,false)
* showMetaHoverAnimation = (true,false)
* titleSize= (h2,h3,h4)
--}}
<main class="verdin-main verdin-outer">
{{#tag}}
{{> "components/tag-header"}}
{{/tag}}
{{> "components/list"
count="6"
layout="list"
showHeader=false
showExcerpt=false
showPrimaryAuthor=true
showPublishedAt=true
showAccessMeta=true
showPrimaryTag=true
showFeaturedMeta=true
showReadingTime=true
showImageHoverAnimation=true
showMetaHoverAnimation=true
titleSize="h2"
}}
{{> "components/list-archives" title="Other topics" displayAuthors=false displayTags=true}}
{{> "components/cta" title=@custom.email_signup_title subTitle=@custom.email_signup_subtitle}}
</main>