index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {% extends "/html/base.html" %}
  2. {%block subtitle %}: {{page.title}}{% endblock %}
  3. {% block content %}
  4. <div id="custom-page">
  5. <!--
  6. <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/SM8xq8dYuCI?rel=0&amp;controls=0&amp;showinfo=0&amp;loop=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
  7. -->
  8. <link rel="stylesheet" href="/assets/videojs/video-js.min.css">
  9. <video id=example-video width=640 height=360 class="video-js vjs-default-skin" data-setup='{"controls": false, "loop": true, "autoplay": true, "preload": "true"}'>
  10. <source
  11. src="/media/tinydc/intro/out.m3u8"
  12. type="application/x-mpegURL">
  13. </video>
  14. <script src="/assets/videojs/video.js"></script>
  15. <script src="/assets/videojs/videojs-contrib-hls.js"></script>
  16. <script>
  17. var player = videojs('example-video');
  18. player.play();
  19. </script>
  20. <div id="page-header">
  21. <h2>{{page.title}}</h2>
  22. </div>
  23. {% if page.toc %}{{page.toc|safe}}{% endif %}
  24. {{page.content|safe}}
  25. <div id="prev-next">
  26. {% if page.prev %}
  27. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  28. {% endif %}
  29. {% if all page.prev page.next %}
  30. ||
  31. {% endif %}
  32. {% if page.next %}
  33. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  34. {% endif %}
  35. </div>
  36. </div>
  37. {% endblock %}