11 lines
303 B
HTML
11 lines
303 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 "partials/simple_stats.html" %}
|
|
{% include "partials/features.html" %}
|
|
{% endblock content %}
|