forked from argoproject/Argo
-
-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy path404.php
More file actions
29 lines (27 loc) · 680 Bytes
/
404.php
File metadata and controls
29 lines (27 loc) · 680 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
<?php
/**
* The template for displaying 404 pages.
*
* @package Largo
* @since 0.1
*/
get_header(); ?>
<div id="content" class="span8" role="main">
<?php get_template_part( 'partials/content', 'not-found' ); ?>
<?php
/*
* Display the Recent Posts widget
*
* @since 0.5.5
* @link https://codex.wordpress.org/Function_Reference/the_widget
*/
if ( class_exists( 'largo_recent_posts_widget' ) ) {
the_widget( 'largo_recent_posts_widget', array (
'title' => __( 'Or check out some of our recent stories', 'largo' ),
'show_byline' => 1
));
}
?>
</div><!--#content -->
<?php get_sidebar(); ?>
<?php get_footer();