{% extends "/html/base.html" %} {%block subtitle %}: {{page.title}}{% endblock %} {% block content %} <div id="custom-page"> <!-- <iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/SM8xq8dYuCI?rel=0&controls=0&showinfo=0&loop=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> --> <link rel="stylesheet" href="/assets/videojs/video-js.css"> <video id=example-video width=640 height=360 class="video-js vjs-default-skin" data-setup='{"controls": false, "loop": true, "autoplay": true, "preload": "true"}'> <source src="/media/tinydc/intro/out.m3u8" type="application/x-mpegURL"> <!-- <source src="https://ispooge.com/hls/ispoogedaily/index.m3u8" type="application/x-mpegURL"> --> </video> <script src="/assets/videojs/video.js"></script> <script src="/assets/videojs/videojs-contrib-hls.js"></script> <script> var player = videojs('example-video'); player.play(); </script> <div id="page-header"> <h2>{{page.title}}</h2> </div> {% if page.toc %}{{page.toc|safe}}{% endif %} {{page.content|safe}} <div id="prev-next"> {% if page.prev %} <a href="{{page.prev.uri}}">« {{page.prev.title}}</a> {% endif %} {% if all page.prev page.next %} || {% endif %} {% if page.next %} <a href="{{page.next.uri}}">{{page.next.title}} »</a> {% endif %} </div> </div> {% endblock %}