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

23 lines
791 B
HTML
Raw Normal View History

2015-10-19 13:04:49 +01:00
{% extends 'base.html' %}
2015-11-25 08:09:36 +00:00
{% block htmltitle %}404 - It's not here!{% endblock %}
2015-10-19 13:04:49 +01:00
2015-11-25 08:09:36 +00:00
{% block bodyClass %}four-o-four{% endblock %}
2015-11-24 22:39:07 +00:00
2015-10-19 13:04:49 +01:00
{% block content %}
2015-11-25 08:09:36 +00:00
<div class="container header">
<h1>Uh Oh - There's nothing here!</h1>
</div>
<div class="container-fluid image"></div>
<div class="container-fluid message">
2015-11-24 22:39:07 +00:00
<div class="container">
2015-11-25 08:09:36 +00:00
<h3>The page you were looking for could not be found.</h3>
<h4>Don't worry, I've send these people to go and find it. Rest assured it will be found.</h4>
2015-11-24 22:39:07 +00:00
</div>
</div>
2015-11-25 08:09:36 +00:00
<div class="container-fluid move-on">
2015-11-24 22:39:07 +00:00
<div class="container">
2015-11-25 08:09:36 +00:00
<h4>Nope, there's nothing more down here either. Why not <a href="javascript:window.history.back()">Go back</a> or <a href="/">Return Home</a></h4>
2015-11-24 22:39:07 +00:00
</div>
</div>
2015-10-19 13:04:49 +01:00
{% endblock %}