Adds "Now" page functionality

Implements a "Now" page to share current activities, inspired by nownownow.com.

- Introduces a new content type "now" with corresponding layouts and archetype.
- Adds a "Now" entry to the main menu.
- Creates a script to easily generate new "now" entries.
- Updates the colophon page with information about the "now" page.
- Deletes weeknote config as it isn't in use anymore
This commit is contained in:
fundor333
2025-08-05 02:49:10 +02:00
parent 7f3aa3ec77
commit f86b05b476
11 changed files with 95 additions and 65 deletions

View File

@@ -2,15 +2,17 @@
<h4 class="post-item-title">
<a href="{{ .RelPermalink }}">
{{if eq .Type "post" }}
<i class="fa-regular fa-newspaper"></i>
<i class="fa-whiteboard fa-semibold fa-newspaper fa-xl"></i>
{{ else if eq .Type "micro" }}
<i class="fa-regular fa-thought-bubble fa-flip-horizontal"></i>
<i class="fa-whiteboard fa-semibold fa-quotes fa-xl"></i>
{{ else if eq .Type "photos" }}
<i class="fa-regular fa-camera-retro"></i>
<i class="fa-whiteboard fa-semibold fa-camera fa-xl"></i>
{{ else if eq .Type "weeknote" }}
<i class="fa-kit fa-regular-bowl-chopsticks-noodles-at fa-xl"></i>
{{ else if eq .Type "now" }}
<i class="fa-whiteboard fa-semibold fa-skull fa-xl"></i>
{{ else }}
<i class="fa-duotone fa-solid fa-sushi"></i>
<i class="fa-whiteboard fa-semibold fa-ghost fa-xl"></i>
{{ end}}
{{ .Title }}</a>
</h4>