forked from hero/www_hero_project
17 lines
386 B
HTML
17 lines
386 B
HTML
{% extends "_default/base.html" %}
|
|
{% block content %}
|
|
<!-- mycelium.md page template, has a banner and rows of page summaries -->
|
|
<div>
|
|
{% set page = get_page(path="hero/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
{% include "partials/heroapps.html" %}
|
|
|
|
<div>
|
|
{% set page = get_page(path="hero/cta/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
{% endblock content %}
|