This repository has been archived on 2024-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
www_ourworld_tf_archive/templates/index.html
2024-05-31 01:33:40 +03:00

24 lines
504 B
HTML

{% extends "_default/base.html" %}
{% block content %}
<!-- home page template, has a banner and rows of page summaries -->
{% include "partials/hero.html" %}
<div>
{% set page = get_page(path="home/index.md") %}
{{page.content | safe}}
</div>
{% include "partials/about.html" %}
{% include "partials/feature.html" %}
{% include "partials/stats.html" %}
{% include "partials/ventures.html" %}
{% include "partials/blogs.html" %}
{% include "partials/quote.html" %}
{% endblock content %}