hostea-website/templates/index.html

38 lines
1.9 KiB
HTML

{% import "macros.html" as macros %}
{% import "home/components/home-card.html" as card_macro %}
{% import "home/components/home-card-new.html" as card_macro2 %}
{% extends "base.html" %} {% block meta %}
{% set description = "Hostea: Dedicated managed Gitea hosting, including CI/CD
and static pages with upgrades, backups and 24/7 monitoring" %} {% set title =
"Home" %} {{ macros::get_meta_tags(title=title, description=description) }} {%
endblock meta %} {% block content %}
{% include "home/components/_banner-new.html" %}
<!-- <div class="index__container"> -->
<div class="index__group-content">
<div class="page__group-content">
<div class="action-call__container">
<div class="action-call__margin-container">
<p class="action-call__prompt">Need an independent forge? Talk to an expert!</p>
<button class="action-call__button"><a href="/contact" class="action-call_link">Contact Us</a></button>
</div>
</div>
<div class="page__container--split">
{% include "home/components/_vision.html" %}
<section class="home__features">
<div class="home-card__group">
{{ card_macro::home_card(title="Radically Transparent", description="Hostea is radically transparent, we hold discussions in the open and publish all expenses down to the last penny") }}
{{ card_macro::home_card(title="100% Free Software", description="All Hostea components are Free, you are welcome to download and even sell Hostea!") }}
{{ card_macro::home_card(title="Horizontal Community", description="Hostea development is lead by a horizontal community minded individuals and organisations with a common goal to advance Free Software.") }}
</div>
</section>
</div>
{% include "home/components/_services-new.html" %}
{% include "home/components/_features.html" %}
</div>
</div>
<!-- </div> -->
{% endblock content %}