add a tagging system to the website

This commit is contained in:
りき萌 2025-08-24 13:18:51 +02:00
parent 701da6bc4b
commit e1b6578b2a
97 changed files with 1025 additions and 979 deletions

View file

@ -4,6 +4,14 @@
{{#if (ne page.tree_path 'index')}}
<header>
<h1 class="page-title"><a href="{{ config.site }}/{{ page.tree_path }}">{{ page.title }}</a></h1>
<ul class="feeds">
{{#each page.feeds as |feed|}}
<li>
<time datetime="{{ feed.updated }}">{{ iso_date feed.updated }}</time>
{{#if (gt (len page.feeds) 0)}}<span class="source-feed">[<a href="{{ feed.url }}">{{ feed.name }}</a>]</span>{{/if}}
</li>
{{/each}}
</ul>
</header>
{{/if}}