annotate templates/sat_website/base.html @ 133:1bdb78a21647

adapt the website after the campaign on Arizuka finished
author souliane <souliane@mailoo.org>
date Sun, 06 Dec 2015 16:11:06 +0100
parents 699b9b130368
children c56b6ad62153
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1 {% comment %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
2 SàT website: Salut à Toi's presentation website
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
3 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org)
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
4
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
5 This file is part of SàT website.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
6
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
7 SàT website is free software: you can redistribute it and/or modify
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
8 it under the terms of the GNU Affero General Public License as published by
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
9 the Free Software Foundation, either version 3 of the License, or
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
10 (at your option) any later version.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
11
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
12 Foobar is distributed in the hope that it will be useful,
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
15 GNU Affero General Public License for more details.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
16
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
17 You should have received a copy of the GNU Affero General Public License
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
18 along with Foobar. If not, see <http://www.gnu.org/licenses/>.
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
19 {% endcomment %}
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
20
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
25
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
28 <head>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
29 <meta charset="utf-8">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
30 <meta http-equiv="X-UA-Compatible" content="IE=edge">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
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
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
34 <link rel="stylesheet" href="{% static "css/sat_website.css" %}">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
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
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
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">
133
1bdb78a21647 adapt the website after the campaign on Arizuka finished
souliane <souliane@mailoo.org>
parents: 125
diff changeset
39 {% comment %}
1bdb78a21647 adapt the website after the campaign on Arizuka finished
souliane <souliane@mailoo.org>
parents: 125
diff changeset
40 {% 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
41 <div class="alert alert-info banner">
116
e138879873f1 changes to link the crowdfunding campaign (revert to be done manually after 45 days)
souliane <souliane@mailoo.org>
parents: 110
diff changeset
42 <div class="container">
e138879873f1 changes to link the crowdfunding campaign (revert to be done manually after 45 days)
souliane <souliane@mailoo.org>
parents: 110
diff changeset
43
e138879873f1 changes to link the crowdfunding campaign (revert to be done manually after 45 days)
souliane <souliane@mailoo.org>
parents: 110
diff changeset
44 <div class="row">
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
45 <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
46 {% 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
47 {% 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
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 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
50 <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
51 </div>
116
e138879873f1 changes to link the crowdfunding campaign (revert to be done manually after 45 days)
souliane <souliane@mailoo.org>
parents: 110
diff changeset
52 </div>
133
1bdb78a21647 adapt the website after the campaign on Arizuka finished
souliane <souliane@mailoo.org>
parents: 125
diff changeset
53 </div>
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
54 </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
55 {% endif %}
133
1bdb78a21647 adapt the website after the campaign on Arizuka finished
souliane <souliane@mailoo.org>
parents: 125
diff changeset
56 {% endcomment %}
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
57 <nav class="navbar navbar-inverse navbar-fixed-top">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
58 <div class="container">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
59 <div class="navbar-header" id="navbar-header">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
60 <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
61 <span class="sr-only">Toggle navigation</span>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
62 <span class="icon-bar"></span>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
63 <span class="icon-bar"></span>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
64 <span class="icon-bar"></span>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
65 </button>
81
7665d00e5295 use SVG logo
souliane <souliane@mailoo.org>
parents: 77
diff changeset
66 <img id="sat_logo" src="{% static "images/sat_logo.svg" %}">
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
67 <a class="navbar-brand" href="overview.html">
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
68 Salut à Toi
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
69 </a>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
70 </div>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
71 <div id="navbar" class="collapse navbar-collapse">
27
eda4deefecd1 reorganisation of the menu using submenus
souliane <souliane@mailoo.org>
parents: 26
diff changeset
72 {% 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
73 {% include "sat_website/menu.html" with style="nav navbar-nav pull-right" categories=categories_right language_select=True %}
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
74 </div>
72
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
75 <noscript>
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
76 {% 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
77 {% if item|is_tuple %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
78 {% 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
79 <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
80 {% endfor %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
81 {% endif %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
82 {% endfor %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
83 <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
84 {% csrf_token %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
85 <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
86 <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
87 {% 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
88 {% for language in languages %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
89 <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
90 {% endfor %}
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
91 </select>
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
92 <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
93 </form>
ac83544a7645 display an ugly menu in <noscript> when JS is disabled
souliane <souliane@mailoo.org>
parents: 71
diff changeset
94 </noscript>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
95 </div>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
96 </nav>
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
97
54
d54f2f09a73a fixes displaying two carousels on the same page
souliane <souliane@mailoo.org>
parents: 45
diff changeset
98 <script src="{% static "js/jquery.min.js" %}"></script>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
99 {% 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
100 <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
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 {% 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
103 <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
104 </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
105 </footer>
26
3df49721008c upgrade to Bootstrap v3.3.1
souliane <souliane@mailoo.org>
parents: 25
diff changeset
106 <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
107 <script src="{% static "js/sat_website.js" %}"></script>
0
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
108 </body>
9305c6458e2f initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
109 </html>