blog/tblog/templates/index.html

14 lines
442 B
HTML
Raw Normal View History

2024-12-31 19:56:46 -05:00
{% 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 %}