-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
33 lines (27 loc) · 813 Bytes
/
404.php
File metadata and controls
33 lines (27 loc) · 813 Bytes
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
<?php
/**
* The template for displaying 404 pages (Not Found).
*
* @package nbr
*/
get_header(); ?>
<div id="primary" class="content-area ">
<div id="content" class="site-content" role="main">
<header class="page-header bg-72">
<h1 class="page-title">Oops! It looks like nothing was found here.<br/>Perhaps try a search or one of the links below</h1>
</header><!-- .page-header -->
<div class="width-25">
<?php get_template_part('module-news'); ?>
</div>
<div class="width-25">
<?php get_template_part('module-qa'); ?>
</div>
<div class="width-25">
<?php get_template_part('module-archives'); ?>
</div>
<div class="width-25">
<?php get_template_part('module-awards'); ?>
</div>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>