27 lines
836 B
HTML
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 %}
|