blog/webapp/templates/navigation.html

9 lines
439 B
HTML
Raw Normal View History

2021-02-22 13:33:57 +01:00
<a href="{{ url_for('home') }}">{{ _("PiSquared Blog") }}</a> |
2021-02-22 19:01:43 +01:00
<a href="{{ url_for('index') }}">{{ _("Index") }}</a> |
2021-05-01 16:19:02 +02:00
<a href="{{ url_for('list_tag') }}">{{ _("Tags") }}</a> |
2021-03-28 18:17:33 +02:00
<a href="{{ url_for('rss') }}">{{ _("RSS") }}</a> |
2021-05-01 16:19:02 +02:00
<a href="{{ url_for('aboutme') }}">{{ _("About Me") }}</a>
{% if current_user.is_authenticated %}
| <a href="{{ url_for('list_blog_post') }}" style="background-color: red;">{{ _("Admin") }}</a>
{% endif %}