templates/archivio/archivio-interviste.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block pageTitle %} Archivio Interviste {% endblock %}
  3. {% block pageStyle %}    
  4.     {{ parent() }}     
  5. {% endblock %}
  6. {% block pageScriptsHeader %} 
  7.     {{ parent() }} 
  8. {% endblock %}
  9. {% block navigation %} {{ parent() }} {% endblock %}
  10. {% block upperMainContainer %}    
  11. {% endblock %}
  12. {% block mainContainer %}
  13. <section id="biografia-1" class="container">
  14.     <div class="content">
  15.         <h3>Intervista a Giulio Carlo Argan (2,11 min)</h3>
  16.         <iframe width="560" height="315" src="https://www.youtube.com/embed/Geue_haE3yQ?si=lH4STJdbJk1jwnmI" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
  17.         <h3 class="mt-3">Intervista a Raffaele De Grada (8,11 min)</h3>
  18.         <iframe width="560" height="315" src="https://www.youtube.com/embed/CBbBLrmkm-w?si=2JB8fDnxmadqsdBv" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
  19.         <h3 class="mt-3">Intervista a Giuseppe Mazzariol (9 min)</h3>
  20.         <iframe width="560" height="315" src="https://www.youtube.com/embed/VC8hkqBSZ6w?si=uNjwAt1xH4FB9feH" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
  21.         <h3 class="mt-3">Intervista a Riccardo Muti (2,11 min)</h3>
  22.         <iframe width="560" height="315" src="https://www.youtube.com/embed/Qi51sTYNXKo?si=Yv-F8PGOXPZlfyYx" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
  23.         <h3 class="mt-5">Altro</h3>
  24.     </div>
  25. </section>
  26. <style>
  27. section { position:relative; }
  28. section:not(:first-of-type) { border-top:1px solid #444; padding-top:1rem; margin-top:3rem; }
  29. section h2 { margin-bottom:2rem; }
  30. .closed .content { display:none; }
  31. .handler { padding:1rem; background:none; border:1px solid #444; position: absolute; top:1rem; right:1rem; background-image:url('/images/svg/plus.svg'); background-size:auto 90%; 
  32. background-position:center; background-repeat:no-repeat; }
  33. .handler.open { background-image:url('/images/svg/minus.svg'); }
  34. </style>
  35. {% endblock %}