eds/templates/cms/404.html

29 lines
690 B
HTML
Raw Permalink Normal View History

2017-04-07 09:17:20 +02:00
{% extends "./base_site.html" %}
{% load i18n static %}
2017-08-13 22:58:46 +02:00
{% block extrastyle %}
{{ block.super }}
<link rel="stylesheet" type="text/css" href="{% static "admin/css/dashboard.css" %}" />
<link rel="stylesheet" type="text/css" href="{% static "css/main.css" %}" />
{% endblock %}
2017-04-07 09:17:20 +02:00
{% block coltype %}colMS{% endblock %}
2017-08-13 22:58:46 +02:00
{% block bodyclass %}
{{ block.super }} dashboard
{% endblock %}
2017-04-07 09:17:20 +02:00
{% block breadcrumbs %}
<div class="breadcrumbs">
2017-08-13 22:58:46 +02:00
<a href="{% url 'home' %}">Accueil</a>
<a href="{% url 'document' %}">Document</a>
2017-04-07 09:17:20 +02:00
</div>
2017-08-13 22:58:46 +02:00
{% endblock %}
2017-04-07 09:17:20 +02:00
{% block content %}
2017-08-13 22:58:46 +02:00
<div id="content-main">
Page non trouvée
</div>
2017-04-07 09:17:20 +02:00
{% endblock %}