<h1class="ui-state-default"><ahref="{% url 'home' %}">{% include "title.html" %}</a></h1>
<nav>
<ulclass="menu-float">
{% if user.is_authenticated %}
<li><aclass="button"id="profile-button"href="{% url 'profile' %}">{% blocktrans with user.profile.get_user_display as name %}Logged in as {{ name }}{% endblocktrans %}</a></li>
<li><aclass="button"id="logout-button"href="{% url 'logout' %}">{% trans "Logout" %}</a></li>
{% else %}
{% if registration_open %}
<li><aclass="button"id="register-button"href="{% url 'register' %}">{% trans "Register" %}</a></li>
{% endif %}
<li><aclass="button"id="login-button"href="{% url 'login' %}{% if not skip_next %}?next={{ login_redirect_url }}{% endif %}">{% trans "Login" %}</a></li>
{% endif %}
</ul>
<ulid="breadcrumbs">
<olclass="breadcrumb">
<li><ahref="{% url 'home' %}">{% trans "Home" %}</a></li>