ux: CHANGE change 'feeds' to 'sections' - BREAKING - short guide in release notes

This commit is contained in:
Caffeine Fueled 2026-03-22 20:30:05 +01:00
parent 98ab0ab419
commit a99d1db1cb
Signed by: cf7
GPG key ID: CA295D643074C68C
4 changed files with 59 additions and 59 deletions

View file

@ -7,10 +7,10 @@
{% include 'header.tmpl' %}
<main>
<h2>Feeds</h2>
<h2>Sections</h2>
<ul>
{% for feed in feeds %}
<li><a href="/feed/{{ feed.name }}/">{{ feed.name }}</a> ({{ feed.count }} posts)</li>
{% for section in sections %}
<li><a href="/section/{{ section.name }}/">{{ section.name }}</a> ({{ section.count }} posts)</li>
{% endfor %}
</ul>
</main>