I think arguments that "Such new versions will be similar in spirit to the present version", in my own reading and readings such as in https://www.draketo.de/software/gpl-or-later, convince me for now that it is acceptable to allow the "or later" for compatibility and future problem's sake Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
19 lines
459 B
HTML
19 lines
459 B
HTML
{#
|
|
SPDX-FileCopyrightText: © 2020 Brian S. Stephan <bss@incorporeal.org>
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
|
#}
|
|
{% extends "base.html" %}
|
|
|
|
{% block header %}
|
|
<div class="header">
|
|
<a href="/">{{ config.TITLE_SUFFIX }}</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="content">
|
|
<h1>INTERNAL SERVER ERROR</h1>
|
|
<p>Something bad happened! Please email me at {{ config.CONTACT_EMAIL }} and tell me what happened.</p>
|
|
</div>
|
|
{% endblock %}
|