blob: 1efa0b1f19a045d2aa96a37ac3116474cd0633b9 (
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.oid }}">{{ feed.title }}</a></li>
{% endfor %}
</ul>
</div><!-- /.container -->
{% endblock %}
|