tetratto/crates/app/src/public/html/misc/index.html
trisua 7d96a3d20f add: user settings
fix: actually use cached stuff in auto_method macro
add: profile ui base
2025-03-25 23:58:27 -04:00

12 lines
383 B
HTML

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