www_mycelium/templates/layouts/home1.html
2024-08-13 16:40:49 +02:00

24 lines
514 B
HTML

{% extends "_default/base.html" %}
{% block content %}
<!-- mycelium.md page template, has a banner and rows of page summaries -->
{% include "partials/home1.html" %}
<div>
{% set page = get_page(path="home1/index.md") %}
{{page.content | safe}}
</div>
{% include "partials/logos.html" %}
{% include "partials/about.html" %}
{% include "partials/benefits.html" %}
{% include "partials/howitworks.html" %}
{% include "partials/blogs.html" %}
{% include "partials/cta.html" %}
{% endblock content %}