templates: override gadjo/root.html

This commit is contained in:
Benjamin Dauvergne 2017-11-23 17:11:48 +01:00
parent a4d3166afe
commit 69b2ba484b
1 changed files with 18 additions and 0 deletions

18
templates/gadjo/base.html Normal file
View File

@ -0,0 +1,18 @@
{% extends "gadjo/root.html" %}
{% load i18n %}
{% block site-header %}
<h1 class="breadcrumbs">
<a href="{% block homepage-url %}/{% endblock %}">{% block homepage-title %}{% trans "Homepage" %}{% endblock %}</a>
{% if request.path == "/manage/" %}
<a href="#"></a>
{% endif %}
{% block breadcrumb %}{% endblock %}
</h1>
{% endblock %}
{% block more-user-links %}
{% endblock %}
{% block extrascripts %}
{% endblock %}