www_mycelium/templates/layouts/home1.html

24 lines
514 B
HTML
Raw Normal View History

2024-05-21 05:34:29 +00:00
{% extends "_default/base.html" %}
{% block content %}
<!-- mycelium.md page template, has a banner and rows of page summaries -->
2024-08-13 14:40:49 +00:00
{% include "partials/home1.html" %}
2024-05-21 05:34:29 +00:00
<div>
2024-08-13 14:40:49 +00:00
{% set page = get_page(path="home1/index.md") %}
2024-05-21 05:34:29 +00:00
{{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 %}