mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-31 01:11:36 +08:00
14 lines
322 B
HTML
14 lines
322 B
HTML
{% extends "layout.html" %}
|
|
{% block toptext %}
|
|
404 - Not Found
|
|
{% endblock %}
|
|
{% block main %}
|
|
{% if message: %}
|
|
<p>{{ message }}</p>
|
|
{% else %}
|
|
<p>This page does not exist.</p>
|
|
{% endif %}
|
|
<p>If you think this is an error, contact the server administrator to resolve
|
|
the problem.</p>
|
|
{% endblock %}
|