ulovliglogning.dk/_layouts/indexpage.html

31 lines
662 B
HTML

---
layout: default
---
{% for section in page.sections %}
{% if section.id != "faq" %}
<section id="{{ section.id }}" class="{% cycle 'odd', 'even' %}">
<div class="content">
<h1>{{ section.heading }}</h1>
<div class="paragraphs">
{{ section.content | markdownify }}
</div>
</div>
</section>
{% endif %}
{% endfor %}
<section id="faq">
{% for section in page.sections %}
{% if section.id == "faq" %}
<div class="qa">
<div class="qa--question">
<h3>{{ section.heading }}</h3>
</div>
<div class="qa--anwser">
{{ section.content | markdownify }}
</div>
</div>
{% endif %}
{% endfor %}
</section>