forked from hero/www_hero_project
17 lines
337 B
HTML
17 lines
337 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="usecases/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
|
|
{% include "partials/usecases1.html" %}
|
|
{% include "partials/usecases2.html" %}
|
|
|
|
|
|
{% endblock content %} |