From 3a80e71c2148d8522886f6fc95dd2f9aec5eb904 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 20 Feb 2026 17:54:09 +0100 Subject: [PATCH] feat: add sophisticated and artful author template --- author.hbs | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 author.hbs diff --git a/author.hbs b/author.hbs new file mode 100644 index 0000000..f53da4b --- /dev/null +++ b/author.hbs @@ -0,0 +1,71 @@ +{{!< default}} + +{{#author}} +
+ {{#if cover_image}} +
+ {{name}}'s cover image +
+
+ {{/if}} + +
+ {{#if profile_image}} +
+ {{name}}'s avatar +
+ {{/if}} + +

{{name}}

+ +
+ {{#if location}} + + + {{location}} + + {{/if}} + {{#if website}} + + + Website + + {{/if}} + {{#if twitter}} + + + Twitter + + {{/if}} + {{#if facebook}} + + + Facebook + + {{/if}} +
+ + {{#if bio}} +

+ {{bio}} +

+ {{/if}} + +
+ + {{plural ../pagination.total empty='No posts' singular='% post' plural='% posts'}} + +
+
+
+{{/author}} + +
+
+ {{#foreach posts}} + {{> "post-card"}} + {{/foreach}} +
+ + {{pagination}} +