From 2ad54e184c5355ab8f1e3b3919af1b51829409f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 20 Feb 2026 19:36:51 +0100 Subject: [PATCH] feat: add tag template with header and infinite scroll --- tag.hbs | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 tag.hbs diff --git a/tag.hbs b/tag.hbs new file mode 100644 index 0000000..a8fc2c1 --- /dev/null +++ b/tag.hbs @@ -0,0 +1,43 @@ +{{!< default}} + +{{#tag}} +
+ Tag +

{{name}}

+ {{#if description}} +

{{description}}

+ {{else}} +

A collection of {{plural ../pagination.total empty='posts' singular='% post' plural='% posts'}}

+ {{/if}} +
+{{/tag}} + +
+ {{#if posts}} +
+ {{#foreach posts}} + {{> "post-card"}} + {{/foreach}} + + {{#if pagination.next}} +
+
+ {{/if}} +
+ +
+
+

Loading more posts...

+
+ + {{else}} +

No posts found.

+ {{/if}} +