index.html 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.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. <!--
  14. <source
  15. src="https://ispooge.com/hls/ispoogedaily/index.m3u8"
  16. type="application/x-mpegURL">
  17. -->
  18. </video>
  19. <script src="/assets/videojs/video.js"></script>
  20. <script src="/assets/videojs/videojs-contrib-hls.js"></script>
  21. <script>
  22. var player = videojs('example-video');
  23. player.play();
  24. </script>
  25. <div id="page-header">
  26. <h2>{{page.title}}</h2>
  27. </div>
  28. {% if page.toc %}{{page.toc|safe}}{% endif %}
  29. {{page.content|safe}}
  30. <div id="prev-next">
  31. {% if page.prev %}
  32. <a href="{{page.prev.uri}}">&laquo; {{page.prev.title}}</a>
  33. {% endif %}
  34. {% if all page.prev page.next %}
  35. ||
  36. {% endif %}
  37. {% if page.next %}
  38. <a href="{{page.next.uri}}">{{page.next.title}} &raquo;</a>
  39. {% endif %}
  40. </div>
  41. </div>
  42. {% endblock %}