This commit is contained in:
sasha-astiadi
2024-05-06 11:59:44 +02:00
parent a61a0df908
commit a0f1aa044e
329 changed files with 1549 additions and 3387 deletions

View File

@@ -0,0 +1,22 @@
{% 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 %}