templates/home/direct_fluid.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}
  3.   DieuFM en direct
  4. {% endblock %}
  5. {% block stylesheets %}
  6.   {{ parent() }}
  7.   <style>
  8.     .fluid_html_on_pause {
  9.       color: white
  10.     }
  11.   </style>
  12. {% endblock %}
  13. {% block body %}
  14.   <!-- Masthead -->
  15.   <header class="masthead short">
  16.     <div class="container">
  17.       <div class="row align-items-center justify-content-center text-center">
  18.         <div class="col-lg-10 align-self-end">
  19.           <h1 class="text-uppercase text-white font-weight-bold">
  20.             Ă‰coute en direct
  21.           </h1>
  22.           <hr class="divider my-4" />
  23.         </div>
  24.       </div>
  25.     </div>
  26.   </header>
  27.   <section class="page-section" id="donation">
  28.     <div class="container">
  29.       <div class="row justify-content-center mb-5">
  30.         <div class="col-lg-8 align-self-baseline text-center">
  31.           <p class="Xtext-white-75 mb-4">
  32.             Ecoutez ici en direct le flux audio de DieuTV ou allez sur <a target="_blank" href="https://dieutv.com">
  33.               dieutv.com
  34.             </a> pour avoir l'image.
  35.           </p>
  36.           <div>
  37.             <script src="https://cdn.fluidplayer.com/v3/current/fluidplayer.min.js"></script>
  38.             <video id="video-id">
  39.               <source src="https://cdn.katapy.io/cache/stream/katapytv/dieucustom/audio.m3u8" type="application/x-mpegURL" />
  40.               <script>
  41.                   var myFP = fluidPlayer(
  42.                       'video-id',    {
  43.                         "layoutControls": {
  44.                           "controlBar": {
  45.                             "autoHideTimeout": 100,
  46.                             "animated": true,
  47.                             "autoHide": false
  48.                           },
  49.                           "htmlOnPauseBlock": {
  50.                             "html": "En pause",
  51.                             "height": "50",
  52.                             "width": "100",
  53.                             "color": "#FFFFFF"
  54.                           },
  55.                           "autoPlay": true,
  56.                           "mute": false,
  57.                           doubleclickFullscreen: false,
  58.                           primaryColor: "#f4623a",
  59.                           "allowTheatre": false,
  60.                           "playPauseAnimation": false,
  61.                           "playbackRateEnabled": false,
  62.                           "allowDownload": false,
  63.                           "playButtonShowing": true,
  64.                           "fillToContainer": false,
  65.                           "posterImage": "",
  66.                           "title": "DieuTV audio"
  67.                         },
  68.                         "vastOptions": {
  69.                           "adList": [],
  70.                           "adCTAText": false,
  71.                           "adCTATextPosition": ""
  72.                         }
  73.                       })
  74.               </script>
  75.             <video>
  76.           </div>
  77.         </div>
  78.       </div>
  79.     </div>
  80.   </section>
  81. {% endblock %}
  82. {% block javascripts %}
  83.   {{ parent() }}
  84. {% endblock %}