Mercurial > sat_legacy_website
annotate templates/sat_website/base.html @ 71:a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
author | souliane <souliane@mailoo.org> |
---|---|
date | Wed, 27 May 2015 18:56:16 +0200 |
parents | d54f2f09a73a |
children | ac83544a7645 |
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 %} | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
22 {% load i18n %} |
25
930e73ea9e8e
select the current language in the languages selection list
souliane <souliane@mailoo.org>
parents:
22
diff
changeset
|
23 {% get_current_language as LANGUAGE_CODE %} |
0 | 24 |
25 <!DOCTYPE html> | |
25
930e73ea9e8e
select the current language in the languages selection list
souliane <souliane@mailoo.org>
parents:
22
diff
changeset
|
26 <html lang="{{ LANGUAGE_CODE }}"> |
0 | 27 <head> |
26 | 28 <meta charset="utf-8"> |
29 <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
30 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
27
eda4deefecd1
reorganisation of the menu using submenus
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
31 <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap.min.css" %}"> |
33
73c6333fd124
change overview.html, move the previous content to principles.html
souliane <souliane@mailoo.org>
parents:
29
diff
changeset
|
32 <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap-theme.min.css" %}"> |
26 | 33 <link rel="stylesheet" href="{% static "css/sat_website.css" %}"> |
34 <link rel="icon" type="image/png" href="{% static "images/sat_logo_32.png" %}"> | |
45
62c23067e86e
improve English texts following recommandations from Florian
souliane <souliane@mailoo.org>
parents:
33
diff
changeset
|
35 <title>{% block title %}{% trans "Salut à Toi: the multi frontend, multipurpose communication tool" %}{% endblock %}</title> |
0 | 36 </head> |
33
73c6333fd124
change overview.html, move the previous content to principles.html
souliane <souliane@mailoo.org>
parents:
29
diff
changeset
|
37 <body role="document"> |
71
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
38 {% if category != "adhesion" and category != "adhesion_form" and category != "thank_you" %} |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
39 <div class="alert alert-info banner"> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
40 <div class="container"><div class="row"> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
41 <div class="col-md-10"> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
42 {% trans "We need your support to continue and move forward! Take the time to read about what we do. If you like it, please join the association." %} |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
43 {% include "sat_website/finance.html" %} |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
44 </div> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
45 <div class="col-md-2"> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
46 <a class="btn btn-default" href="adhesion.html" role="button">{% trans "Adhesion" %}</a> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
47 </div> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
48 </div></div> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
49 </div> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
50 {% else %} |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
51 <div class="banner"></div> |
a14845624e01
display a banner on top of all pages (but adhesion, adhesion_form and thank_you) to encourage people joining the association
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
52 {% endif %} |
26 | 53 <nav class="navbar navbar-inverse navbar-fixed-top"> |
54 <div class="container"> | |
55 <div class="navbar-header" id="navbar-header"> | |
56 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | |
57 <span class="sr-only">Toggle navigation</span> | |
58 <span class="icon-bar"></span> | |
59 <span class="icon-bar"></span> | |
60 <span class="icon-bar"></span> | |
61 </button> | |
62 <img id="sat_logo" src="{% static "images/sat_logo_32.png" %}"> | |
63 <a class="navbar-brand" href="overview.html"> | |
64 Salut à Toi | |
65 </a> | |
66 </div> | |
67 <div id="navbar" class="collapse navbar-collapse"> | |
27
eda4deefecd1
reorganisation of the menu using submenus
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
68 {% include "sat_website/menu.html" with style="nav navbar-nav" categories=categories %} |
28
30a1edf90fae
move the language selector to the main menu
souliane <souliane@mailoo.org>
parents:
27
diff
changeset
|
69 {% include "sat_website/menu.html" with style="nav navbar-nav pull-right" categories=categories_right language_select=True %} |
26 | 70 </div> |
71 </div> | |
72 </nav> | |
73 | |
54
d54f2f09a73a
fixes displaying two carousels on the same page
souliane <souliane@mailoo.org>
parents:
45
diff
changeset
|
74 <script src="{% static "js/jquery.min.js" %}"></script> |
26 | 75 {% block content %}{% endblock %} |
76 <script src="{% static "bootstrap/js/bootstrap.min.js" %}"></script> | |
29
b45621706d83
use Bootstrap carousels to display images and videos galeries:
souliane <souliane@mailoo.org>
parents:
28
diff
changeset
|
77 <script src="{% static "js/sat_website.js" %}"></script> |
0 | 78 </body> |
79 </html> |