www_mycelium/templates/layouts/mycelium.html

22 lines
556 B
HTML
Raw Normal View History

2024-05-06 09:59:44 +00:00
{% extends "_default/base.html" %}
{% block content %}
<!-- mycelium.md page template, has a banner and rows of page summaries -->
<div>
{% set page = get_page(path="mycelium/hero/index.md") %}
{{page.content | safe}}
</div>
{% include "partials/newinternet.html" %}
{% include "partials/grid_stats.html" %}
<div>
{% set page = get_page(path="mycelium/technologies/index.md") %}
{{page.content | safe}}
</div>
<div>
{% set page = get_page(path="mycelium/farmer/index.md") %}
{{page.content | safe}}
</div>
{% endblock content %}