summaryrefslogtreecommitdiff
path: root/templates/shortcodes/youtube.html
blob: 87ccffe76f0ecc9ad740db6b9359664d9e2011c4 (plain)
1
2
3
4
5
6
7
<div {% if class %}class="{{class}}"{% endif %} style="position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 aspect ratio for responsive sizing */ overflow: hidden;">
  <iframe style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;
                 border-radius: 4px; /* Optional: Add some rounded corners */
                 border-style: none; /* Remove iframe border */"
          src="https://www.youtube-nocookie.com/embed/{{id}}{% if autoplay %}?autoplay=1{% endif %}" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen>
  </iframe>
</div>