{% if page.effect %} <section class=“chapter”>

<h2>Was ist {{ site.mainpage.year }} passiert?</h2>

{% if page.resources %}

<div class="chapter__resources">
  <h3>{{ site.chapter.resources }}</h3>
  {{ page.resources | markdownify }}
</div>

{% endif %}

<div class="chapter__outcomes">
  {% for x in site.chapter.outcomes %}
    {% if page[x.key] %}
      <div class="columns chapter__item">
        <h3 class="column is-one-quarter">{{ x.label }}</h3>
        <div class="column is-three-quarters no-inner-margin">
          {{ page[x.key] | markdownify}}
        </div>
      </div>
    {% endif %}
  {% endfor %}
</div>

</section> {% endif %}