Mercurial > sat_legacy_website
annotate templates/sat_website/base.html @ 1:a49aa1b823f6
added SàT archive download link (detect the last version)
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 29 Jul 2012 01:52:27 +0200 |
parents | 9305c6458e2f |
children | 0df46e87537d |
rev | line source |
---|---|
0 | 1 {% comment %} |
2 SàT website: Salut à Toi's presentation website | |
3 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org) | |
4 | |
5 This file is part of SàT website. | |
6 | |
7 SàT website is free software: you can redistribute it and/or modify | |
8 it 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 | |
10 (at your option) any later version. | |
11 | |
12 Foobar is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU Affero General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU Affero General Public License | |
18 along with Foobar. If not, see <http://www.gnu.org/licenses/>. | |
19 {% endcomment %} | |
20 | |
21 {% load staticfiles %} | |
22 | |
23 <!DOCTYPE html> | |
24 <html lang="en"> | |
25 <meta charset="utf-8"> | |
26 <head> | |
27 <link rel="stylesheet" href="{% static "css/bootstrap.css" %}"> | |
28 <link rel="stylesheet" href="{% static "css/bootstrap-responsive.css" %}"> | |
29 <link rel="stylesheet" href="{% static "css/sat_website.css" %}"> | |
30 <link rel="icon" type="image/png" href="{% static "images/sat_logo_32.png" %}"> | |
31 <title>{% block title %}Salut à Toi: the multi-frontends, multi-purposes communication tool{% endblock %}</title> | |
32 </head> | |
33 <body> | |
34 <div class="navbar navbar-fixed-top"> | |
35 <div class="navbar-inner"> | |
36 <div class="container"> | |
37 <ul class="nav"> | |
38 <img id="sat_logo" src="{% static "images/sat_logo_32.png" %}"></li> | |
39 <a class="brand" href="overview.html">Salut à Toi</a> | |
40 {#<li><a href="#">Overview</a></li>#} | |
41 {% for cat_url,cat_name in categories.items %} | |
42 <li><a href="{{ cat_url }}.html">{{ cat_name }}</a></li> | |
43 {% endfor %} | |
1
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
44 </ul> |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
45 {% if latest_dl_path and latest_version %} |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
46 <ul class="nav pull-right"> |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
47 <li><a href="{{ latest_dl_path }}"><strong>Download SàT {{ latest_version }}</strong></a> </li> |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
48 |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
49 </ul> |
a49aa1b823f6
added SàT archive download link (detect the last version)
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
50 {% endif %} |
0 | 51 </div> |
52 </div> | |
53 </div> | |
54 {% block content %}{% endblock %} | |
55 </body> | |
56 </html> |