Mercurial > sat_legacy_website
annotate templates/sat_website/base.html @ 115:bd30a18690e7
English social contract: software is invariant (Florian and Rachelle)
author | souliane <souliane@mailoo.org> |
---|---|
date | Tue, 20 Oct 2015 10:11:27 +0200 |
parents | f3b907d0e5ab |
children | e138879873f1 |
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 %} |
72
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
23 {% load utils %} |
25
930e73ea9e8e
select the current language in the languages selection list
souliane <souliane@mailoo.org>
parents:
22
diff
changeset
|
24 {% get_current_language as LANGUAGE_CODE %} |
0 | 25 |
26 <!DOCTYPE html> | |
25
930e73ea9e8e
select the current language in the languages selection list
souliane <souliane@mailoo.org>
parents:
22
diff
changeset
|
27 <html lang="{{ LANGUAGE_CODE }}"> |
0 | 28 <head> |
26 | 29 <meta charset="utf-8"> |
30 <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
31 <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
|
32 <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
|
33 <link rel="stylesheet" href="{% static "bootstrap/css/bootstrap-theme.min.css" %}"> |
26 | 34 <link rel="stylesheet" href="{% static "css/sat_website.css" %}"> |
35 <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
|
36 <title>{% block title %}{% trans "Salut à Toi: the multi frontend, multipurpose communication tool" %}{% endblock %}</title> |
0 | 37 </head> |
33
73c6333fd124
change overview.html, move the previous content to principles.html
souliane <souliane@mailoo.org>
parents:
29
diff
changeset
|
38 <body role="document"> |
77
13ebb548f234
use membership instead of adhesion in English (also rename the files)
souliane <souliane@mailoo.org>
parents:
72
diff
changeset
|
39 {% if category != "membership" and category != "membership_form" and category != "thank_you" %} |
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
|
40 <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
|
41 <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
|
42 <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
|
43 {% 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
|
44 {% 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
|
45 </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
|
46 <div class="col-md-2"> |
77
13ebb548f234
use membership instead of adhesion in English (also rename the files)
souliane <souliane@mailoo.org>
parents:
72
diff
changeset
|
47 <a class="btn btn-default" href="membership.html" role="button">{% trans "Membership" %}</a> |
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
|
48 </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></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 </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
|
51 {% 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
|
52 <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
|
53 {% endif %} |
26 | 54 <nav class="navbar navbar-inverse navbar-fixed-top"> |
55 <div class="container"> | |
56 <div class="navbar-header" id="navbar-header"> | |
57 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar"> | |
58 <span class="sr-only">Toggle navigation</span> | |
59 <span class="icon-bar"></span> | |
60 <span class="icon-bar"></span> | |
61 <span class="icon-bar"></span> | |
62 </button> | |
81 | 63 <img id="sat_logo" src="{% static "images/sat_logo.svg" %}"> |
26 | 64 <a class="navbar-brand" href="overview.html"> |
65 Salut à Toi | |
66 </a> | |
67 </div> | |
68 <div id="navbar" class="collapse navbar-collapse"> | |
27
eda4deefecd1
reorganisation of the menu using submenus
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
69 {% 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
|
70 {% include "sat_website/menu.html" with style="nav navbar-nav pull-right" categories=categories_right language_select=True %} |
26 | 71 </div> |
72
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
72 <noscript> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
73 {% for cat_url, item in categories.items %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
74 {% if item|is_tuple %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
75 {% for subcat_url, cat_name in item.1.items %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
76 <a class="btn btn-default" role="button" href="{{ subcat_url }}.html">{{ cat_name }}</a> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
77 {% endfor %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
78 {% endif %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
79 {% endfor %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
80 <form id="language_form" class="form-inline" action="{% url 'set_language' %}" method="post"> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
81 {% csrf_token %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
82 <input name="next" type="hidden" value="{{ redirect_to }}" /> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
83 <select id="language_select" name="language"> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
84 {% get_language_info_list for available_languages as languages %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
85 {% for language in languages %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
86 <option value="{{ language.code }}"{% if language.code == LANGUAGE_CODE %} selected="selected"{% endif %}>{{ language.name_local|title }}</option> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
87 {% endfor %} |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
88 </select> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
89 <input type="submit" value="{% trans "Set language" %}" /> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
90 </form> |
ac83544a7645
display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents:
71
diff
changeset
|
91 </noscript> |
26 | 92 </div> |
93 </nav> | |
94 | |
54
d54f2f09a73a
fixes displaying two carousels on the same page
souliane <souliane@mailoo.org>
parents:
45
diff
changeset
|
95 <script src="{% static "js/jquery.min.js" %}"></script> |
26 | 96 {% block content %}{% endblock %} |
99
dd7a496bf762
add a general footer containing the email contact + add a section for this contact in the "community" section
souliane <souliane@mailoo.org>
parents:
81
diff
changeset
|
97 <footer class="text-center"> |
dd7a496bf762
add a general footer containing the email contact + add a section for this contact in the "community" section
souliane <souliane@mailoo.org>
parents:
81
diff
changeset
|
98 <address> |
dd7a496bf762
add a general footer containing the email contact + add a section for this contact in the "community" section
souliane <souliane@mailoo.org>
parents:
81
diff
changeset
|
99 {% trans '"Salut à Toi" association' %} - |
110
f3b907d0e5ab
changed anti-spam email by .invalid tld. TODO: should use a template instead
Goffi <goffi@goffi.org>
parents:
108
diff
changeset
|
100 <a href="mailto:contact@salut-a-toi.invalid">contact</a> {% trans "(replace invalid with org)" %} |
99
dd7a496bf762
add a general footer containing the email contact + add a section for this contact in the "community" section
souliane <souliane@mailoo.org>
parents:
81
diff
changeset
|
101 </address> |
dd7a496bf762
add a general footer containing the email contact + add a section for this contact in the "community" section
souliane <souliane@mailoo.org>
parents:
81
diff
changeset
|
102 </footer> |
26 | 103 <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
|
104 <script src="{% static "js/sat_website.js" %}"></script> |
0 | 105 </body> |
106 </html> |