18 lines
627 B
Plaintext
18 lines
627 B
Plaintext
{% extends 'layouts/base.njk' %}
|
|
|
|
{# Set lists content #}
|
|
{% set newsListHeading = newsHeading %}
|
|
{% set newsListItems = collections.newsFeed %}
|
|
|
|
{% block content %}
|
|
<main id="main-content" class="home" tabindex="-1">
|
|
{% include "partials/components/intro.njk" %}
|
|
{% include "partials/components/posts-list-home.njk" %}
|
|
{% include "partials/components/post-list.njk" %}
|
|
{% include "partials/components/presentation.njk" %}
|
|
{% include "partials/components/sponsor.njk" %}
|
|
{% include "partials/components/contact-form.njk" %}
|
|
{% include "partials/components/sponsor.njk" %}
|
|
</main>
|
|
{% endblock %}
|