Files
diachron/templates/basic/home.html.njk
2026-01-25 12:12:02 -06:00

20 lines
264 B
Plaintext

<html>
<head></head>
<body>
<p>
home
</p>
<p>
{{ email }}
</p>
{% if showLogin %}
<a href="/login">login</a>
{% endif %}
{% if showLogout %}
<a href="/logout">logout</a>
{% endif %}
</body>
</html>