comparison sat_website/templates/sat_website/media.html @ 149:b1c16cd53b62

update django to version 1.11, refactor project structure, better PEP-8 compliance
author souliane <souliane@mailoo.org>
date Tue, 17 Oct 2017 04:11:21 +0200
parents templates/sat_website/media.html@4b4a5d7602f8
children
comparison
equal deleted inserted replaced
148:75a95a1dfeb6 149:b1c16cd53b62
1 {% extends "sat_website/category.html" %}
2
3 {% comment %}
4 SàT website: Salut à Toi's presentation website
5 Copyright (C) 2012 Jérôme Poisson (goffi@goffi.org)
6
7 This file is part of SàT website.
8
9 SàT website is free software: you can redistribute it and/or modify
10 it under the terms of the GNU Affero General Public License as published by
11 the Free Software Foundation, either version 3 of the License, or
12 (at your option) any later version.
13
14 Foobar is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU Affero General Public License for more details.
18
19 You should have received a copy of the GNU Affero General Public License
20 along with Foobar. If not, see <http://www.gnu.org/licenses/>.
21 {% endcomment %}
22
23 {% load i18n %}
24 {% block headline %}{% trans "Screenshots and videos" %}{% endblock %}
25 {% block main_container %}
26
27 <div class="row">
28 <h5 class="alert alert-success">
29 <a name="media"></a>{% trans "Basic usage" %}
30 </h5>
31 <div class="info">
32 {% trans "These media concern the basic utilisation SàT through graphical frontends like Libervia." %}
33 {% include "sat_website/gallery.html" with media=media name="media" %}
34 </div>
35 </div>
36
37 <div class="row">
38 <h5 class="alert alert-success">
39 <a name="media_tech"></a>{% trans "Advanced usage" %}
40 </h5>
41 <div class="info">
42 {% trans "These media concern the advanced utilisation and frontends of SàT, including administration tasks and experimental features." %}
43 {% include "sat_website/gallery.html" with media=media_tech name="media_tech" %}
44 </div>
45 </div>
46
47 {% endblock %}