sarmentine/templates/index.html
Butter 8d4042e31a
Some checks failed
CI / Check (push) Failing after 20s
CI / Build & Push Docker Image (push) Has been skipped
CI / Deploy to Rocky (push) Has been skipped
added email auth and posting
really coming together now.
2026-05-04 17:20:07 -04:00

27 lines
836 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="site-title">sarmentine</div>
<div class="site-subtitle">:: who was that? ::</div>
<hr class="divider">
{% if let Some(user) = current_user %}
{% if !user.email_verified %}
<div class="post" style="border-color:#d4879c; margin-bottom:12px;">
<div class="post-body" style="color:#d4879c;">
Your email is not verified. Check your inbox for a verification link, or
<a href="/auth/login" style="color:#d4879c;">request a new one</a>.
</div>
</div>
{% endif %}
{% endif %}
<div style="font-family:'Silkscreen',monospace; font-size:11px; color:#d4879c; margin-bottom:8px; text-transform:uppercase;">recent threads</div>
<div class="post">
<div class="post-title">nothing here yet...</div>
<div class="post-body">be the first to post :3</div>
</div>
{% endblock %}