1234567891011121314151617181920 |
- {% load wagtailcrx_tags %}
- {% if embed.ratio %}
- {# If an aspect ratio is included, use the appropriate Bootstrap 4 class #}
- {% if embed.ratio > 0.9 %}
- <div class="embed-responsive embed-responsive-1by1">
- {% elif embed.ratio > 0.7 %}
- <div class="embed-responsive embed-responsive-4by3">
- {% elif embed.ratio > 0.5 %}
- <div class="embed-responsive embed-responsive-16by9">
- {% else %}
- <div class="embed-responsive embed-responsive-21by9">
- {% endif %}
- {% else %}
- {# Otherwise, center it in a row, for things like Tweets. #}
- <div class="row justify-content-center">
- {% endif %}
- {% render_iframe_from_embed embed %}
- </div>
|