-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
custom-archive-tags.hbs
57 lines (47 loc) · 2.42 KB
/
custom-archive-tags.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
50
51
52
53
54
55
56
57
{{!-- Layout --}}
{{!< default}}
{{#contentFor "special_body_class"}}topic{{/contentFor}}
{{#post}}
<header class="relative overflow-hidden text-center text-white px-4 py-12 md:py-vw6 {{#unless feature_image}}topic-header{{/unless}}">
<div class="mx-auto max-w-2xl relative z-3">
<h1 class="capitalize text-4xl lg:text-5xl">{{title}}</h1>
<div class="mt-5 text-xl">{{content}}</div>
</div>
{{!-- Featured Media - partials/components/media-cover.hbs --}}
{{> "components/media-cover" background=feature_image has_gradient=true alt_title=title}}
</header>
{{/post}}
{{#get "tags" limit="18" filter="visibility:public" include="count.posts" order="count.posts desc"}}
<section class="container mx-auto py-8 lg:py-16">
<div class="max-w-1100 mx-auto grid md:grid-cols-2 lg:grid-cols-3 gap-6">
{{#foreach tags}}
<article class="topic-story relative bg-dark overflow-hidden rounded-md" {{#if accent_color}}style="background-color:{{accent_color}}"{{/if}}>
{{#if feature_image}}
<a href="{{url}}">
<img class="inset-image blur-up lazyload"
src="{{img_url feature_image size="m"}}"
srcset="{{img_url feature_image size="xxs"}}"
data-srcset="{{img_url feature_image size="s"}} 300w,
{{img_url feature_image size="m"}} 600w"
data-sizes="(max-width: 1000px) 400px, 600px"
alt="{{name}}"
/>
</a>
<div class="absolute inset-0 z-2 topic-bg-gradient"></div>
{{/if}}
<header class="relative text-white z-4 text-center w-full px-4 py-16 lg:px-6">
<div class="text-xs uppercase mb-3 opacity-90 tracking-widest font-medium">{{plural count.posts empty=(t "No Stories") singular=(t "1 Story") plural=(t "% Stories")}}</div>
<h2 class="text-2xl capitalize font-semibold tracking-wide"><a href="{{url}}">{{name}}</a></h2>
</header>
<a href="{{url}}" class="absolute inset-0 z-4" aria-label="{{name}}"></a>
</article>
{{/foreach}}
</div>
</section>
{{/get}}
{{#contentFor "header"}}
<style>
.topic-header {background: url({{asset "images/bg-setup.svg"}}) bottom no-repeat,linear-gradient(60deg,#2e2ea2,#138395)}
.topic-bg-gradient {background: linear-gradient(135deg,rgb(6 10 25 / 70%),rgb(5 17 19 / 60%))}
</style>
{{/contentFor}}