2
0

embed_frontend.html 681 B

1234567891011121314151617181920
  1. {% load wagtailcrx_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. {% render_iframe_from_embed embed %}
  18. </div>