This repository has been archived on 2025-06-11. You can view files and clone it, but cannot push or open issues or pull requests.
www_ow_freezone/templates/index.html
sasha-astiadi 80253662d4
Some checks failed
ourworld.tf / Deploy (push) Has been cancelled
Merge branch 'development'
2024-10-31 12:57:25 +01:00

27 lines
543 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/about1.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 %}