aboutsummaryrefslogtreecommitdiff
path: root/src/web/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/templates/layout.html')
-rw-r--r--src/web/templates/layout.html5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/web/templates/layout.html b/src/web/templates/layout.html
index a9732230..33ccb97f 100644
--- a/src/web/templates/layout.html
+++ b/src/web/templates/layout.html
@@ -32,10 +32,11 @@
<span class="icon-bar"></span>
</button>
{% if current_user.is_authenticated %}
- <a class="navbar-brand" href="{{ url_for("feeds.feeds") }}">🗞&nbsp;Newspipe</a>
+ <a class="navbar-brand" href="{{ url_for("feeds.feeds") }}">🗞&nbsp;</a>
{% else %}
- <a class="navbar-brand" href="{{ url_for("home") }}">🗞&nbsp;Newspipe</a>
+ <a class="navbar-brand" href="{{ url_for("home") }}">🗞&nbsp;</a>
{% endif %}
+ <a class="navbar-brand" href="{{ url_for("home") }}">Newspipe</a>
{% if head_titles %}
<p class="navbar-text" style="max-height: 20px; overflow: hidden">
{{ " - ".join(head_titles) }}
bgstack15