Add step and preface section includes

This commit is contained in:
Endorphin3D
2023-05-16 00:35:34 -04:00
parent 14bb26fb66
commit 61f055078b
12 changed files with 207 additions and 59 deletions

View File

@@ -0,0 +1,11 @@
<div class="d-lg-flex gap-x-4" {% if include.reverse %}style="flex-direction: row-reverse"{% endif %}>
<div style="flex: 1">
{{ include.title | markdownify }}
{{ include.content | markdownify }}
</div>
{% if include.image %}
<div style="flex: 1">
<img src="{{ include.image }}" alt="{{ include.alt }}">
</div>
{% endif %}
</div>