forked from hero/www_hero_project
26 lines
440 B
HTML
26 lines
440 B
HTML
|
|
{% extends "_default/base.html" %}
|
|
{% block content %}
|
|
|
|
{% include "partials/home1.html" %}
|
|
|
|
{% include "partials/about.html" %}
|
|
{% include "partials/mesh2.html" %}
|
|
{% include "partials/concepts.html" %}
|
|
|
|
<div>
|
|
{% set page = get_page(path="home/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
{% include "partials/benefits.html" %}
|
|
|
|
{% include "partials/blogs.html" %}
|
|
|
|
{% include "partials/stats.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock content %} |