Merge branch 'master' of ssh://stefankoegl@repo.or.cz/srv/git/mygpo
[mygpo.git] / mygpo / web / templates / base.html
blob03321e2cf38a7cbb886f8aec70745eac3b11f060
1 <html>
2 <head>
3 <!--
5 # This file is part of my.gpodder.org.
7 # my.gpodder.org is free software: you can redistribute it and/or modify it
8 # under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or (at your
10 # option) any later version.
12 # my.gpodder.org is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
15 # License for more details.
17 # You should have received a copy of the GNU Affero General Public License
18 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
20 -->
21 <title>{% block title %}{% endblock %}my.gPodder.org</title>
22 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
23 <link rel="shortcut icon" href="http://my.gpodder.org/favicon.png">
24 <link rel="stylesheet" href="/media/screen.css" type="text/css" />
25 <link rel="stylesheet" href="/media/screen-base.css" type="text/css" />
26 </head>
27 <body>
28 <h1 id="logo">
29 <strong><img alt="gPodder" title="gPodder" src="http://gpodder.org/images/weblogo64.png" /></strong>
30 </h1>
31 <div id="topnav">
32 <ul id="gpodder-menu">
33 <li><a href="http://gpodder.org/"><img src="http://gpodder.org/images/icons/go-home.png" alt="">Home</a></li>
34 <li><a href="http://gpodder.org/news.html"><img src="http://gpodder.org/images/icons/accessories-text-editor.png" alt="">News</a></li>
35 <li><a href="http://gpodder.org/downloads.html"><img src="http://gpodder.org/images/icons/package-x-generic.png" alt="">Download</a></li>
36 <li><a href="http://gpodder.org/documentation.html"><img src="http://gpodder.org/images/icons/help-browser.png" alt="">Help</a></li>
37 <li><a href="http://bugs.gpodder.org/"><img src="http://gpodder.org/images/icons/dialog-warning.png" alt="">Bugs</a></li>
38 <li><strong><img src="http://gpodder.org/images/icons/mygpo.png" alt="">Web Service</strong></li>
39 </ul>
40 </div>
42 <hr>
44 <div id="body">
46 {% if error_message %}
47 <div class="error">{{ error_message }}</div>
48 {% endif %}
50 {% block content %}
51 <h1>gPodder Web Service</h1>
52 <p>...will go online soon...</p>
53 <ul>
54 <li><a href="http://gpodder.org/wiki/Web_Services">Wiki page</a></li>
55 <li><a href="toplist.opml">Toplist as OPML</a></li>
56 </ul>
57 {% endblock %}
58 </div>
59 <div id="navigation">
60 <span class="spacer1">&nbsp;</span>
61 <span class="spacer2">&nbsp;</span>
63 {% if user.is_authenticated %}
64 <ul class="menu">
65 <li><a href="/">{{ user.username }}'s Home</a></li>
66 <li><a href="/account/">Your settings</a></li>
67 <li><a href="/logout/">Logout</a></li>
68 </ul>
70 <ul class="menu">
71 <li><strong>Podcasts</strong></li>
72 <li><a href="/search/">Search</a></li>
73 <li><a href="/toplist/">Toplist</a></li>
74 <li><a href="/suggestions/">Suggestions</a></li>
75 </ul>
77 <ul class="menu">
78 <li><a href="/authors/">For podcast authors</a></li>
79 </ul>
81 {% else %}
82 <ul class="menu">
83 <li><a href="/">Home</a></li>
84 <li><a href="/login/">Login</a></li>
85 <li><a href="/register/">Register</a></li>
86 <li><a href="/toplist/">Podcast-Toplist</a></li>
87 </ul>
89 <ul class="menu">
90 <li><a href="/authors/">For podcast authors</a></li>
91 </ul>
92 {% endif %}
94 </div>
96 <hr style="clear: both;">
98 <address>© 2005-2009 <a class="noextlink" href="http://thpinfo.com/">Thomas Perl</a> and the gPodder Team</address>
99 </body>
100 </html>