25 lines
494 B
HTML
25 lines
494 B
HTML
{% extends "_default/base.html" %}
|
|
{% block content %}
|
|
|
|
<!-- home page template, has a banner and rows of page summaries -->
|
|
|
|
{% include "partials/hero.html" %}
|
|
{% include "partials/logos2.html" %}
|
|
{% include "shortcodes/grid_stats.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% include "partials/about.html" %}
|
|
|
|
{% include "partials/feature.html" %}
|
|
|
|
{% include "partials/benefits.html" %}
|
|
|
|
{% include "partials/blogs.html" %}
|
|
{% include "partials/presale.html" %}
|
|
{% include "partials/faq.html" %}
|
|
{% endblock content %}
|