duckquill/templates/404.html
daudix-UFO d39b7f5630
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/manual/woodpecker Pipeline was successful
feat: Bootstrap icons, new H1 style, symlink README to site index
2023-10-28 04:20:09 +03:00

15 lines
487 B
HTML

{% extends "base.html" %}
{% block content %}
<img src="{{ get_url(path='404.png') }}" class="full pixels transparent no-hover" />
<h1>Document Not Found</h1>
<p>The requested page could not be found. If you feel this is not normal, then you create an issue on the {{ config.extra.hosting }}.</p>
<p class="dialog-buttons">
<a onclick="window.history.go(-1)" class="inline-button">Go Back</a>
<a href="{{ config.extra.issues_url }}">File an issue</a>
</p>
{% endblock content %}