Begin stage 3

This commit is contained in:
Endorphin3D
2023-05-19 21:52:39 -04:00
parent c1681f52ed
commit 8ea26a70d4
14 changed files with 52 additions and 18 deletions

View File

@@ -5,7 +5,7 @@
</div>
{% if include.image %}
<div style="flex: 1">
<img src="{{ include.image }}" alt="{{ include.alt }}">
<img src="{{ include.image }}" alt="{{ include.title }}">
</div>
{% endif %}
</div>

View File

@@ -1,16 +1,16 @@
{{ include.heading | markdownify }}
<div class="d-lg-flex gap-x-4" {% if include.reverse %}style="flex-direction: row-reverse"{% endif %}>
<div style="flex: 1">
{{ include.heading | markdownify }}
{{ include.content | markdownify }}
</div>
{% if include.image %}
<div class="mt-8" style="flex: 1">
<img src="{{ include.image }}" alt="{{ include.alt }}">
<div style="flex: 1">
<img src="{{ include.image }}" alt="{{ include.heading }}">
</div>
{% endif %}
{% if include.video %}
<div class="mt-8" style="flex: 1">
<div style="flex: 1">
<video muted controls loop class="w-full">
<source src="{{ include.video }}" type="video/mp4">
</video>