embed_frontend.html 739 B

123456789101112131415161718192021
  1. {% load wagtailembeds_tags %}
  2. {% if embed.ratio %}
  3. {# If an aspect ratio is included, use the appropriate Bootstrap 4 class #}
  4. {% if embed.ratio > 0.9 %}
  5. <div class="embed-responsive embed-responsive-1by1">
  6. {% elif embed.ratio > 0.7 %}
  7. <div class="embed-responsive embed-responsive-4by3">
  8. {% elif embed.ratio > 0.5 %}
  9. <div class="embed-responsive embed-responsive-16by9">
  10. {% else %}
  11. <div class="embed-responsive embed-responsive-21by9">
  12. {% endif %}
  13. {% else %}
  14. {# Otherwise, center it in a row, for things like Tweets. #}
  15. <div class="row justify-content-center">
  16. {% endif %}
  17. {# Embed the video with an absurdly high max width. #}
  18. {% embed embed.url max_width=3840 %}
  19. </div>