-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.tmpl
28 lines (22 loc) · 849 Bytes
/
404.tmpl
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
<!DOCTYPE html>
<html lang="en">
<% include header.tmpl %>
<body>
<% include navbar.tmpl %>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>Page not found</h2>
<p>Sorry, but the page you requested was not found!</p>
</div>
</div>
</div><!-- /.container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<!-- Obtain latest version of jquery automatically -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<!-- Obtain Bootstrap javascript from CDN (online service) so it doesn't have to be on my machine -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</body>
</html>