aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/templates/feeds.html
blob: 0893f98278eb382e603e4f3cf71609adeb3a997c (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layout.html" %}
{% block content %}
<div class="container">
    <h1>You are subscribed to the following feeds</h1>
    <ul>
    {% for feed in feeds %}
        <li><a href="/feed/{{ feed.id }}">{{ feed.title }}</a></li>
    {% endfor %}
    </ul>
</div><!-- /.container -->
{% endblock %}
bgstack15