Commit 87c028e7 authored by Julian Andres Klode's avatar Julian Andres Klode Committed by Enrico Zini
Browse files

deblayout: Add missing close tags for <div id="content"> and messages



The #content div must be closed before the #footer div is opened. For
the messages, there is an opening <div>, but a closing </li>. I assume
that the </li> should be a </div>, as there is no <ul> or <ol> around
the list.

Signed-off-by: Julian Andres Klode's avatarJulian Andres Klode <jak@debian.org>
parent d98fd49e
......@@ -99,7 +99,7 @@ Always leave one space between the slash and the link.
{% if messages %}
{% for message in messages %}
<div class="{% if message.tags %}{{ message.tags }}{% else %}important{% endif %}"><p>{{ message }}</p></li>
<div class="{% if message.tags %}{{ message.tags }}{% else %}important{% endif %}"><p>{{ message }}</p></div>
{% endfor %}
{% endif %}
......@@ -110,6 +110,7 @@ Always leave one space between the slash and the link.
-->
Debian Website Template</h1>
{% endblock %}
</div>
<div id="footer">
{% block footer %}
......
Supports Markdown
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