ulovliglogning.dk/_layouts/indexpage.html

31 lines
662 B
HTML
Raw Normal View History

2018-01-20 23:49:35 +00:00
---
layout: default
---
{% for section in page.sections %}
2018-01-25 23:17:09 +00:00
{% 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>