1
0
Fork 0
mirror of https://github.com/fastogt/fastocloud_admin.git synced 2025-03-09 23:38:52 +00:00
fastocloud_admin/app/templates/404.html
2020-02-08 22:27:17 -05:00

16 lines
425 B
HTML

{% extends 'layouts/layout.html' %}
{% block title %}
Page not found | {{ config['PUBLIC_CONFIG'].site.title }}
{% endblock %}
{% block content %}
<div class="container">
<div class="row well">
<h1>Page Not Found</h1>
<p>What you were looking for is just not there.</p>
<p>
<a href="{{ url_for('HomeView:index') }}">go somewhere nice</a>
</p>
</div>
</div>
{% endblock %}