Mercurial > sat_legacy_website
annotate templates/sat_website/media.html @ 118:3247b461e105
add a link to the interview on Framablog
author | souliane <souliane@mailoo.org> |
---|---|
date | Mon, 02 Nov 2015 11:17:56 +0100 |
parents | 4b4a5d7602f8 |
children |
rev | line source |
---|---|
0 | 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 | |
2
0df46e87537d
i18n: marked translatable texts + add change language form on pages footer
Goffi <goffi@goffi.org>
parents:
0
diff
changeset
|
23 {% load i18n %} |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
24 {% block headline %}{% trans "Screenshots and videos" %}{% endblock %} |
0 | 25 {% block main_container %} |
29
b45621706d83
use Bootstrap carousels to display images and videos galeries:
souliane <souliane@mailoo.org>
parents:
26
diff
changeset
|
26 |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
27 <div class="row"> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
28 <h5 class="alert alert-success"> |
89
4b4a5d7602f8
rename screenshots to media, since not only screenshots but also videos are listed
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
29 <a name="media"></a>{% trans "Basic usage" %} |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
30 </h5> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
31 <div class="info"> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
32 {% trans "These media concern the basic utilisation SàT through graphical frontends like Libervia." %} |
89
4b4a5d7602f8
rename screenshots to media, since not only screenshots but also videos are listed
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
33 {% include "sat_website/gallery.html" with media=media name="media" %} |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
34 </div> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
35 </div> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
36 |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
37 <div class="row"> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
38 <h5 class="alert alert-success"> |
89
4b4a5d7602f8
rename screenshots to media, since not only screenshots but also videos are listed
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
39 <a name="media_tech"></a>{% trans "Advanced usage" %} |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
40 </h5> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
41 <div class="info"> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
42 {% trans "These media concern the advanced utilisation and frontends of SàT, including administration tasks and experimental features." %} |
89
4b4a5d7602f8
rename screenshots to media, since not only screenshots but also videos are listed
souliane <souliane@mailoo.org>
parents:
54
diff
changeset
|
43 {% include "sat_website/gallery.html" with media=media_tech name="media_tech" %} |
47
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
44 </div> |
3e460ca969d2
delete screenshots_tech.html, display all screenshots in the same page using sections
souliane <souliane@mailoo.org>
parents:
35
diff
changeset
|
45 </div> |
35
10ce34ab389a
dummy patch (just add some new lines to make space between the blocks)
souliane <souliane@mailoo.org>
parents:
29
diff
changeset
|
46 |
0 | 47 {% endblock %} |