feat: create hayflow, a zola theme

This commit is contained in:
Cyril MARPAUD
2023-03-03 18:18:40 +01:00
commit c36b81bca5
11 changed files with 980 additions and 0 deletions

View File

@ -0,0 +1,15 @@
{{ section.content | safe }}
<div class="columns">
{% for page in section.pages %}
<div>
<h2>{{ page.title }}</h2>
{% for icon in page.extra.icons | default(value=[]) %}
<i class="{{ icon }} fa-3x"></i>
{% endfor %}
{{ page.content | safe }}
</div>
{% endfor %}
</div>