Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Fix paths.
Browse files Browse the repository at this point in the history
  • Loading branch information
fpereiro committed Jan 18, 2021
1 parent 31ecb9b commit 49b77bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/incl-menubar.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
</a>
{% endfor %}
{% if username %}
<a class="menubar-btn border-transparent" href="my-profile{% if lang and lang != "en" %}?lang={{lang}}{% endif %}">{{auth.profile}}</a>
<a class="menubar-btn border-transparent" href="/my-profile{% if lang and lang != "en" %}?lang={{lang}}{% endif %}">{{auth.profile}}</a>
{% endif %}
{% if not username %}
<a class="menubar-btn border-transparent" href="login{% if lang and lang != "en" %}?lang={{lang}}{% endif %}">{{auth.login}}</a>
<a class="menubar-btn border-transparent" href="/login{% if lang and lang != "en" %}?lang={{lang}}{% endif %}">{{auth.login}}</a>
{% endif %}
{% endblock %}

Expand Down

0 comments on commit 49b77bd

Please sign in to comment.