From b8580c2c9bd433a5308e1dc6b974f4409a8d0ec1 Mon Sep 17 00:00:00 2001 From: noah Date: Sun, 20 Jul 2025 22:53:09 +0000 Subject: [PATCH 1/2] feat: display followers count if followers list is hidden --- app/templates/header.html | 4 ++-- app/templates/index.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/templates/header.html b/app/templates/header.html index a15f051..0f9a88c 100644 --- a/app/templates/header.html +++ b/app/templates/header.html @@ -1,5 +1,4 @@ diff --git a/app/templates/index.html b/app/templates/index.html index 8db1638..177a6e7 100644 --- a/app/templates/index.html +++ b/app/templates/index.html @@ -2,7 +2,7 @@ {% extends "layout.html" %} {% block head %} -{{ local_actor.display_name }}'s microblog +{{ local_actor.display_name }}'s posts. From 0e3d0601b9b75cae8bbc65cbd93e26c41d7ffb48 Mon Sep 17 00:00:00 2001 From: noah Date: Sun, 20 Jul 2025 22:16:08 +0000 Subject: [PATCH 2/2] feat: custom theme settings --- data/_theme.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/data/_theme.scss b/data/_theme.scss index 9fc2396..929b6c3 100644 --- a/data/_theme.scss +++ b/data/_theme.scss @@ -1 +1,13 @@ // override vars for theming here +$font-stack: Helvetica, sans-serif; +$background: #041704; +$light-background: #115817; +$text-color: #8f8f8f; +$primary-color: #33DD3D; // ярко-зелёный акцент +$secondary-color: #a259d9; // фиолетовый акцент +$form-background-color: #23262f; +$form-text-color: #e6e6e6; +$muted-color: #888fa6; // приглушённый для комментариев +$primary-button-text-color: #181a20; +$code-highlight-background: #23262f; +