1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/templates/core/404.html

27 lines
663 B
HTML
Raw Normal View History

2015-10-19 13:04:49 +01:00
{% extends 'base.html' %}
{% block htmltitle %}Oh no, There's nothing here!{% endblock %}
{% block headercontent %}
<div class="row">
<h1>404 - Page not found</h1>
</div>
<div class="row">
<h4>The page you were looking for could not be found. </h4>
<h4>Don't worry, I've sent these people to to go and find it. Rest assured it will be found!</h4>
</div>
{% endblock %}
2015-11-24 22:39:07 +00:00
{% block bodyClass %}404{% endblock %}
2015-10-19 13:04:49 +01:00
{% block content %}
2015-11-24 22:39:07 +00:00
<div class="container-fluid">
<div class="container">
<h1>There's nothing here!</h1>
</div>
</div>
<div class="container-fluid">
<div class="container">
</div>
</div>
2015-10-19 13:04:49 +01:00
{% endblock %}