mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2025-02-11 02:59:15 +00:00
![Matt Scott](/assets/img/avatar_default.png)
This reverts commit 929cb6302da6bc0d78e2a7af9deb77cee9d80732, reversing changes made to 0418edddd9e5ddba0fdbe2b2abd2cf016cf887a3.
38 lines
1.1 KiB
HTML
38 lines
1.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}<title>PowerDNS-Admin - 404 Error</title>{% endblock %}
|
|
|
|
{% block dashboard_stat %}
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>
|
|
404
|
|
<small>Error</small>
|
|
</h1>
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ url_for('dashboard.dashboard') }}"><i class="fa fa-dashboard"></i>Home</a></li>
|
|
<li>404</li>
|
|
</ol>
|
|
</section>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
<div class="error-page">
|
|
<h2 class="headline text-yellow">404</h2>
|
|
<div class="error-content">
|
|
<h3>
|
|
<i class="fa fa-warning text-yellow"></i> Oops! You're lost
|
|
</h3>
|
|
<p>
|
|
The page you requested could not be found.
|
|
You may <a href="{{ url_for('dashboard.dashboard') }}">return to the dashboard</a>.
|
|
</p>
|
|
</div>
|
|
<!-- /.error-content -->
|
|
</div>
|
|
<!-- /.error-page -->
|
|
</section>
|
|
<!-- /.content -->
|
|
{% endblock %}
|