1 {% extends 'reader/base.html' %}
3 {% block title %}{{ block.super }} - Home{% endblock %}
7 {% for feed in feeds %}
8 {% if forloop.first %}<ul>{% endif %}
9 <li><a href="{{ feed.link }}">{{ feed.title }}</a></li>
10 {% if forloop.last %}</ul>{% endif %}
13 {% for entry in entries %}
14 {% include 'reader/includes/entry.html' %}