rstcms/templates/home.html

21 lines
318 B
HTML

<style>
pre { max-width: 100%; overflow: scroll; }
</style>
{% if user %}
<div>
Logged in as
<span><img src='{{ user.avatar_url }}'></span>
<span>{{ user.username }}</span>
</div>
<a href="/test">test</a>
<a href="/logout">logout</a>
{% else %}
<a href="/login">login</a>
{% endif %}