src/hdalab/templates/video_popup.html
changeset 675 d68e7b3a2e4f
child 676 111906d4c8b0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/hdalab/templates/video_popup.html	Thu Mar 31 14:13:00 2016 +0200
@@ -0,0 +1,19 @@
+{% load static %}
+{% load i18n %}
+<a class="video-close" href="#">{% trans 'Fermer<br>ce didacticiel' %}</a>
+<div class="slideShowTitle">{% trans 'Tutoriel vidéo : Renkan' %}</div>
+<video id="renkan_video" class="video-js vjs-default-skin"
+        controls preload="auto" width="800" height="600"
+        poster="{% static 'hdalab/img/renkan_tutorial_video_poster.png' %}"
+        data-setup=''>
+    {% if video_mp4 %}
+    <source src="{{video_mp4}}" type="video/mp4" />
+    {% endif %}
+    {% if video_webm %}
+    <source src="{{video_webm}}" type="video/webm" />
+    {% endif %}
+    {% if video_ogg %}
+    <source src="{{video_ogg}}" type="video/ogg" />
+    {% endif %}
+    <p class="vjs-no-js">Pour pouvoir visionner cette vidéo, veuiller activer Javascript et éventuellement utiliser un navigateur web à jour votre navigateur afin d'un navigateur qui <a href="http://videojs.com/html5-video-support/" target="_blank">supporte les vidéo HTML5</a></p>
+</video>
\ No newline at end of file