-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtag.hbs
More file actions
24 lines (16 loc) · 694 Bytes
/
tag.hbs
File metadata and controls
24 lines (16 loc) · 694 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
{{!< default}}
{{#tag}}
<!-- Hero Section -->
<section class="mb-20 mt-10 mx-auto w-full px-8 md:px-12">
<h1 class="text-[5rem] md:text-[7rem] font-extrabold tracking-tighter leading-none mb-8"> {{name}} </h1>
<div class="max-w-2xl">
<p class="text-xl leading-relaxed font-light">
{{#if description}} {{description}} {{else}} A collection of {{plural ../pagination.total empty='posts'
singular='% post' plural='% posts'}} tagged with # {{name}}.
{{/if}}
</p>
</div>
</section>
{{/tag}}
<!-- Articles Grid -->
{{> "layout/posts" posts=posts layout=@custom.layout }}