aboutsummaryrefslogtreecommitdiff
path: root/source/static/templates/subscriptions.html
blob: 48781e1e3da00466b19a017076738728640bae71 (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>${feed['feed_title']}</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