pyfedi/app/templates/errors/404.html
2024-12-10 12:16:52 +01:00

21 lines
737 B
HTML

{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %}
{% extends 'themes/' + theme() + '/base.html' %}
{% else %}
{% extends "base.html" %}
{% endif %}
{% 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>
</div>
</div>
</div>
</div>
{% endblock %}