pagekite: Drop ineffective base template

The base template simply tries to override the description and formats its
differently. However, since the introduction of app-header.html, this was
ineffective and did nothing because blocks from included templates can't be
overridden, apparently.

Also, the base template is being used only in template as all other templates
either don't use it or have been removed since.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
This commit is contained in:
Sunil Mohan Adapa 2020-03-11 14:47:23 -07:00 committed by Veiko Aasa
parent 736e814477
commit 5b639884b6
No known key found for this signature in database
GPG Key ID: 478539CAE680674E
2 changed files with 1 additions and 19 deletions

View File

@ -1,18 +0,0 @@
{% 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 %}

View File

@ -1,4 +1,4 @@
{% extends "pagekite_base.html" %}
{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}