Files
diachron/templates/basic/home.html.njk
2026-01-25 18:20:57 -06:00

19 lines
270 B
Plaintext

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