-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.php
38 lines (37 loc) · 1.19 KB
/
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
32
33
34
35
36
37
38
<?php
/*
Description: 404 page not found.
*/
?>
<?php get_header(); ?>
<div id="main">
<div class="jumbotron">
<div class="container">
<div class="row">
<div class="col-sm-9">
<header>
<h1>404 Page not found</h1>
</header>
</div>
<div class="col-sm-3">
<?php get_search_form(); ?>
</div>
</div>
</div> <!-- .container -->
</div> <!-- .jumbotron -->
<div class="container">
<div class="row">
<div class="col-sm-8">
<div style="width:25%; margin-right: 1em; float: left;">
<img src="<?php echo get_template_directory_uri() ?>/images/citronaut.png" alt="The Citronaut">
</div>
<p>We're sorry, the page you were looking for could not be found.</p>
<p>Need help finding something on our new site? Try starting at the new <a href="<?php bloginfo('url')?>">UCF Libraries homepage</a>. Or simply <a href="<?php bloginfo('url')?>/ask/">Ask Us!</a></p>
</div> <!-- .col-md-9 -->
<div class="col-sm-4">
<?php echo do_shortcode("[ask-chat]"); ?>
</div>
</div> <!-- .row -->
</div><!-- .container -->
</div><!-- .main -->
<?php get_footer(); ?>