ungleich-staticcms/templates/blocks/slide.html

24 lines
661 B
HTML
Raw Normal View History

2020-04-24 14:45:25 +00:00
<!-- active -->
<div class="carousel-item">
{% if this.video_mp4 %}
<video autoplay muted loop>
<source src="{{ this.video_mp4 }}" type="video/mp4">
</video>
{% elif this.background_image %}
<img src="{{ this.background_image }}" class="d-block w-100" alt="...">
{% endif %}
2020-05-06 05:20:00 +00:00
<div class="container">
<div class="carousel-caption">
2020-05-06 06:21:02 +00:00
<h3 class="display-4">{{ this.title }}</h3>
2020-05-06 05:20:00 +00:00
<p class="lead">
{{ this.description }}
<br>
<a href="{{ this.button_link }}" class="btn btn-primary btn-lg" role="button" aria-pressed="true">
{{ this.button_text }}
</a>
</p>
</div>
2020-04-24 14:45:25 +00:00
</div>
</div>