Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

19 lines
335 B
HTML

{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% block description %}
<p>{{ description.0|safe }}</p>
<ul>
{% for paragraph in description|slice:"1:6" %}
<li>{{ paragraph|safe }}</li>
{% endfor %}
</ul>
<p>{{ description|last|safe }}</p>
{% endblock %}