initial commit

This commit is contained in:
Sebastian Hugentobler 2023-11-15 16:26:35 +01:00
commit 2a9f427bc7
Signed by: shu
GPG key ID: BB32CF3CA052C2F0
21 changed files with 3692 additions and 0 deletions

7
templates/feeds.html Normal file
View file

@ -0,0 +1,7 @@
<ul>
{% for f in feeds %}
<li>
<a href="{{ f.url }}">{{ f.title }}</a> - <a href="/feeds/{{f.id}}">Feed</a>
</li>
{% endfor %}
</ul>