25 lines
443 B
HTML
25 lines
443 B
HTML
{% extends "_default/base.html" %}
|
|
{% block content %}
|
|
|
|
<!-- home page template, has a banner and rows of page summaries -->
|
|
|
|
|
|
|
|
<div>
|
|
{% set page = get_page(path="about/index.md") %}
|
|
{{page.content | safe}}
|
|
</div>
|
|
|
|
{% include "partials/invest.html" %}
|
|
|
|
{% include "partials/opbenefits.html" %}
|
|
|
|
|
|
|
|
{% include "partials/opfeatures.html" %}
|
|
|
|
{% include "partials/ophow.html" %}
|
|
|
|
{% include "partials/quote.html" %}
|
|
|
|
{% endblock content %} |