tetratto/crates/app/src/public/html/misc/index.html

13 lines
383 B
HTML
Raw Normal View History

{% import "macros.html" as macros %} {% extends "root.html" %} {% block body %}
{{ macros::nav(selected="home") }}
2025-03-21 01:37:00 -04:00
<main class="flex flex-col gap-2">
2025-03-23 16:37:43 -04:00
<div class="card-nest">
<div class="card">
<b>✨ Welcome to <i>{{ config.name }}</i>!</b>
2025-03-21 01:37:00 -04:00
</div>
2025-03-23 16:37:43 -04:00
<div class="card">We're still working on your feed...</div>
2025-03-21 01:37:00 -04:00
</div>
</main>
{% endblock %}