Lemon sadness

This commit is contained in:
Joakim Hellsén 2024-05-20 04:34:51 +02:00
commit bfe90aa69d
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
52 changed files with 1564 additions and 2492 deletions

View file

@ -1,5 +1,12 @@
{% extends "base.html" %}
{% block content %}
<h2>Latest Feeds</h2>
{% include "partials/feeds.html" %}
<ul>
{% for feed in feeds %}
<li>
<a href="{% url 'feeds:feed' feed.id %}">{{ feed.url }}</a>
<p>{{ feed.description }}</p>
</li>
{% endfor %}
</ul>
{% endblock %}