this removes Flask, reworks a number of library methods accordingly, and adds generators and build commands to process the instance directory (largely unchanged, except config.py is now config.json) and spit out files suitable to be served by a web server such as Nginx. there are probably some rough edges here, but overall this works. also note, as this is no longer server software on a network, the license has changed from AGPLv3 to GPLv3, and the "or any later version" allowance has been removed Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
19 lines
404 B
HTML
19 lines
404 B
HTML
{#
|
|
SPDX-FileCopyrightText: © 2020 Brian S. Stephan <bss@incorporeal.org>
|
|
SPDX-License-Identifier: GPL-3.0-only
|
|
#}
|
|
{% extends "base.html" %}
|
|
|
|
{% block header %}
|
|
<div class="header">
|
|
<a href="/">{{ config.TITLE_SUFFIX }}</a>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="content">
|
|
<h1>BAD REQUEST</h1>
|
|
<p>You're doing something you're not supposed to. Stop it?</p>
|
|
</div>
|
|
{% endblock %}
|