14 lines
442 B
HTML
14 lines
442 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Hey there, {{ username }}!</h1>
|
||
|
<hr>
|
||
|
<p><a href="/blog/{{ username }}/">Your blog posts</a> ({{ blog_count }})</p>
|
||
|
<p>Write a <a href="/create/">new blog post</a></p>
|
||
|
<hr class="sub">
|
||
|
<small>
|
||
|
<a href="{{ config.services.auth.url.pub }}/logout/?to=blog">Log out</a> -
|
||
|
<a href="{{ config.services.auth.url.pub }}{{ login_token }}">Other services</a>
|
||
|
</small>
|
||
|
{% endblock %}
|