website/templates/index.html

13 lines
554 B
HTML
Raw Normal View History

{% import "macros.html" as macros %}
{% import "home/components/home-card.html" as card_macro %}
2022-04-25 18:30:38 +00:00
{% import "home/components/home-card-new.html" as card_macro2 %}
2022-04-08 12:25:22 +00:00
{% 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 %}
2022-04-08 12:25:22 +00:00
2022-04-25 18:30:38 +00:00
{% include "home/components/_banner-new.html" %}
2022-04-08 12:25:22 +00:00
{% endblock content %}