SiteWebAstrolabe/src/_includes/layouts/home.njk

18 lines
621 B
Plaintext
Raw Normal View History

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" %}
{% include "partials/components/news-list.njk" %}
{% 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 %}