diff templates/sat_website/screenshots.html @ 47:3e460ca969d2

delete screenshots_tech.html, display all screenshots in the same page using sections
author souliane <souliane@mailoo.org>
date Sun, 03 May 2015 22:36:27 +0200
parents 10ce34ab389a
children 84c2e20d3de1
line wrap: on
line diff
--- a/templates/sat_website/screenshots.html	Wed Apr 29 13:04:15 2015 +0200
+++ b/templates/sat_website/screenshots.html	Sun May 03 22:36:27 2015 +0200
@@ -21,9 +21,27 @@
 {% endcomment %}
 
 {% load i18n %}
-{% block headline %}{% trans "Screenshots and videos..." %}{% endblock %}
+{% block headline %}{% trans "Screenshots and videos" %}{% endblock %}
 {% block main_container %}
 
-{% include "sat_website/gallery.html" %}
+<div class="row">
+    <h5 class="alert alert-success">
+        <a name="screenshots">{% trans "Basic usage" %}</a>
+    </h5>
+    <div class="info">
+        {% trans "These media concern the basic utilisation SàT through graphical frontends like Libervia." %}
+        {% include "sat_website/gallery.html" with screenshots=screenshots %}
+    </div>
+</div>
+
+<div class="row">
+    <h5 class="alert alert-success">
+        <a name="screenshots_tech">{% trans "Advanced usage" %}</a>
+    </h5>
+    <div class="info">
+        {% trans "These media concern the advanced utilisation and frontends of SàT, including administration tasks and experimental features." %}
+        {% include "sat_website/gallery.html" with screenshots=screenshots_tech %}
+    </div>
+</div>
 
 {% endblock %}