11 lines
252 B
HTML
11 lines
252 B
HTML
|
---
|
||
|
layout: default
|
||
|
---
|
||
|
{% for section in page.sections %}
|
||
|
<section id="{{ section.id }}" class="{% cycle 'odd', 'even' %}">
|
||
|
<h1>{{ section.heading }}</h1>
|
||
|
<div class="paragraphs">
|
||
|
{{ section.content | markdownify }}
|
||
|
</div>
|
||
|
</section>
|
||
|
{% endfor %}
|