Commit 00690244 authored by Michal Čihař's avatar Michal Čihař

Remove jQuery UI based navigation

Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent b3cbdab5
......@@ -75,28 +75,11 @@
</div>
</nav>
<h1 class="ui-state-default"><a href="{% url 'home' %}">{% include "title.html" %}</a></h1>
<nav>
<ul class="menu-float">
{% if user.is_authenticated %}
<li><a class="button" id="profile-button" href="{% url 'profile' %}">{% blocktrans with user.profile.get_user_display as name %}Logged in as {{ name }}{% endblocktrans %}</a></li>
<li><a class="button" id="logout-button" href="{% url 'logout' %}">{% trans "Logout" %}</a></li>
{% else %}
{% if registration_open %}
<li><a class="button" id="register-button" href="{% url 'register' %}">{% trans "Register" %}</a></li>
{% endif %}
<li><a class="button" id="login-button" href="{% url 'login' %}{% if not skip_next %}?next={{ login_redirect_url }}{% endif %}">{% trans "Login" %}</a></li>
{% endif %}
</ul>
<ul id="breadcrumbs">
<ol class="breadcrumb">
<li><a href="{% url 'home' %}">{% trans "Home" %}</a></li>
{% block breadcrumbs %}
{% endblock %}
</ul>
</nav>
</ol>
</header>
<div class="content">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment