forked from SimonPadbury/bst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·31 lines (25 loc) · 1023 Bytes
/
404.php
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
<?php get_template_part('parts/header'); ?>
<div class="container">
<div class="row visible-xs">
<div class="col-xs-12">
<button style="margin-bottom: 20px;" type="button" class="pull-right btn btn-default" data-toggle="offcanvas">Off-canvas sidebar <i class="glyphicon glyphicon-arrow-right"></i>
</button>
</div>
</div>
<div class="row row-offcanvas row-offcanvas-right">
<div class="col-xs-12 col-sm-8">
<div id="content" role="main">
<div class="alert alert-warning">
<h1><i class="glyphicon glyphicon-warning-sign"></i> Error 404</h1>
<p>The page you were looking for does not exist.</p>
</div>
</div><!-- #content -->
</div>
<div class="col-xs-6 col-sm-4 sidebar-offcanvas" id="sidebar" role="navigation">
<div class="panel panel-default">
<?php get_template_part('parts/sidebar'); ?>
</div>
</div>
</div><!-- .row -->
</div><!-- .container -->
<?php get_template_part('parts/footer'); ?>