Files
django-htmx-presenatation/project/main/templates/main/home.html
Eden Kirin 4e05dc15a5 Home
2024-04-06 10:08:29 +02:00

35 lines
902 B
HTML

{% extends "main/base/base.html" %}
{% macro list_item(content, url) %}
<li>
<a href="{{ url }}" target="_blank">
{{ content }}
</a>
</li>
{% endmacro %}
{% block body_content %}
<div class="row justify-content-center">
<div class="col-6">
<h1 class="mt-5 mb-5 pb-3 border-bottom border-dark">
Django + htmx
</h1>
<h4>Useful Links</h4>
<ul>
{{ list_item("Django", "https://www.djangoproject.com") }}
{{ list_item("htmx", "https://htmx.org") }}
{{ list_item("Django + htmx repository", "https://gitea.ekirin.com/Intis/django-htmx-presenatation") }}
</ul>
<h4 class="mt-5">
<a href="#">
Start demo
</a>
</h4>
</div>
</div>
{% endblock %}