forked from Hostea/website
24 lines
839 B
HTML
24 lines
839 B
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">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- </div> -->
|
|
|
|
{% endblock content %}
|