Remove unnecessary spaces at the end of HTML tag.
This commit is contained in:
parent
1b85c275e2
commit
45f4e2d169
5 changed files with 16 additions and 8 deletions
|
|
@ -8,7 +8,7 @@
|
|||
<span class="user-menu">
|
||||
{% match context.user %}
|
||||
{% when Some with (user) %}
|
||||
<a class="button" href="/recipe/new" >{{ context.tr.t(Sentence::CreateNewRecipe) }}</a>
|
||||
<a class="button" href="/recipe/new">{{ context.tr.t(Sentence::CreateNewRecipe) }}</a>
|
||||
{% if user.is_admin %}
|
||||
<a class="button" href="/logs">Logs</a><a class="button" href="/dev_panel">Dev panel</a>
|
||||
{% endif %}
|
||||
|
|
@ -20,7 +20,7 @@
|
|||
{% endif %}
|
||||
</a> / <a href="/signout">{{ context.tr.t(Sentence::SignOut) }}</a>
|
||||
{% when None %}
|
||||
<a href="/{{ context.tr.current_lang_code() }}/signin" >{{ context.tr.t(Sentence::SignInMenu) }}</a> / <a href="/{{ context.tr.current_lang_code() }}/signup">{{ context.tr.t(Sentence::SignUpMenu) }}</a> / <a href="/{{ context.tr.current_lang_code() }}/ask_reset_password">{{ context.tr.t(Sentence::LostPassword) }}</a>
|
||||
<a href="/{{ context.tr.current_lang_code() }}/signin">{{ context.tr.t(Sentence::SignInMenu) }}</a> / <a href="/{{ context.tr.current_lang_code() }}/signup">{{ context.tr.t(Sentence::SignUpMenu) }}</a> / <a href="/{{ context.tr.current_lang_code() }}/ask_reset_password">{{ context.tr.t(Sentence::LostPassword) }}</a>
|
||||
{% endmatch %}
|
||||
</span>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue