pyfedi/app/templates/errors/404.html

22 lines
740 B
HTML
Raw Normal View History

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %} %}
2023-07-28 16:22:12 +12:00
{% block app_content %}
<div class="row">
<div class="col">
<div class="card">
<div class="card-header">
<h3 class="card-title">{{ _('Ooops, something is broken!') }}</h3>
</div>
<div class="card-body">
<p>{{ _('The page your browser tried to load could not be found.') }}</p>
<p><a href="#" class="go_back">{{ _('Back') }}</a></p>
2023-07-28 16:22:12 +12:00
</div>
</div>
</div>
</div>
{% endblock %}