From cd97f53632ecded02163fcf3115c9830dd0308c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 20 Feb 2026 17:56:25 +0100 Subject: [PATCH] feat: dynamically link footer attribution to the site owner's author page --- partials/footer.hbs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/partials/footer.hbs b/partials/footer.hbs index 5218a31..bd867ce 100644 --- a/partials/footer.hbs +++ b/partials/footer.hbs @@ -8,7 +8,12 @@ {{/if}}

- © {{date format="YYYY"}} {{@site.title}} — Created by Valknar + © {{date format="YYYY"}} {{@site.title}} — + {{#get "authors" limit="1" order="count.posts desc"}} + {{#foreach authors}} + Created by {{name}} + {{/foreach}} + {{/get}}