2020-06-19 23:47:44 +02:00
|
|
|
{% extends 'layouts/base.njk' %}
|
|
|
|
|
2020-07-13 20:36:44 +02:00
|
|
|
{# Set lists content #}
|
2020-06-19 23:47:44 +02:00
|
|
|
{% set newsListHeading = newsHeading %}
|
|
|
|
{% set newsListItems = collections.newsFeed %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-07-14 20:30:02 +02:00
|
|
|
<main id="main-content" class="home" tabindex="-1">
|
2020-06-19 23:47:44 +02:00
|
|
|
{% include "partials/components/intro.njk" %}
|
2020-07-15 23:05:36 +02:00
|
|
|
{% include "partials/components/posts-list-home.njk" %}
|
2020-06-19 23:47:44 +02:00
|
|
|
{% include "partials/components/post-list.njk" %}
|
|
|
|
{% include "partials/components/presentation.njk" %}
|
2020-06-23 13:44:10 +02:00
|
|
|
{% include "partials/components/sponsor.njk" %}
|
|
|
|
{% include "partials/components/contact-form.njk" %}
|
|
|
|
{% include "partials/components/sponsor.njk" %}
|
2020-06-19 23:47:44 +02:00
|
|
|
</main>
|
|
|
|
{% endblock %}
|