diff --git a/templates/navbar.html b/templates/navbar.html new file mode 100644 index 0000000..f3dc4ef --- /dev/null +++ b/templates/navbar.html @@ -0,0 +1,60 @@ +{% load i18n %} +{% block topbar_base %} + + + + + Toggle navigation + + + + + {% block topbar %} + {% block site_brand %} + {% if user.is_anonymous %} + + {% else %} + + {% endif %} + ivatar + {% endblock %} + {% endblock %} + + {% block nav %} + + + {% if not user.is_anonymous %} + + + {% trans 'Home' %} + + + {% endif %} + + + {% trans 'Contact' %} + + + + + {% trans 'Security' %} + + + + + + {% trans 'Tools' %} + + + + {% trans 'Check' %} + + + + + {% block account_bar %}{% include "_account_bar.html" %}{% endblock %} + + {% endblock %} + + +{% endblock %}