aboutsummaryrefslogtreecommitdiff
path: root/source/static/templates/subscriptions.html
blob: f1eb8a7fcfae1ae4f0eeabbbbf9e1f2a04d3a792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
## subscriptions.html
<%inherit file="base.html"/>
<div class="left inner">
    <h1>Subscriptions</h1>
    %if feeds:
        <ul>
            %for feed in feeds:
                    <li><a href="/feed/${feed['feed_id']}">${feed['feed_title']}</a></li>
            %endfor
        </ul>
    %endif

    <br />
    <h1>Add a feed</h1>
    <form method=get action="/add_feed/">
        <input type="url" name="url" placeholder="URL of a site" maxlength=2048 autocomplete="off">
        <input type="submit" value="OK">
    </form>
bgstack15