-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path404.html
46 lines (35 loc) · 1.15 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{% extends "root.html" %}
{% block title %}Stackful.io - VPS Plans{% endblock %}
{% block content %}
<div class="row-fluid">
<!-- start: Page section -->
<section id="page-sidebar" class="pull-left span12">
<!-- start: Wrapper -->
<div class="wrapper">
<!-- start: Page header / Breadcrumbs -->
<section class="breadcrumbs">
<div class="table">
<div class="page-header table-cell">
<h1>404 (page not found)</h1>
</div>
<div class="breadcrumbs table-cell">
<div>You are here: <a href="#">Home</a> › 404 (page not found)</div>
</div>
</div>
</section>
<!-- end: Page header / Breadcrumbs -->
<div class="hero-unit pull-center">
<h2>Uh oh! <br/>404: Page not Found</h2>
<p>
Sorry, but the page you are looking for has not been found.<br/>
Try checking the URL for errors, then hit the refresh button on your browser.
</p>
<div class="spacer"></div>
<p><a class="btn btn-large btn-warning" href="/">Go to Home Page</a></p>
</div>
</div>
<!-- end: Wrapper -->
</section>
<!-- end: Page section -->
</div>
{% endblock %}