-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
50 lines (33 loc) · 1.31 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
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/**
* @package Academica
*/
get_header();
?>
<div id="content" class="clearfix">
<div class="column column-title">
<?php get_template_part( 'breadcrumb' ); ?>
</div><!-- end .column-title -->
<div class="column column-narrow">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- end .column-narrow -->
<div id="column-content" class="column column-content">
<h1 class="title-header"><?php _e( 'Oops! That page can’t be found.', 'academica' ); ?></h1>
<div id="post-0" class="post error404 no-results not-found">
<div class="entry-content">
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'academica' ); ?></p>
<?php the_widget( 'WP_Widget_Search' ); ?>
<div class="widget">
<h2 class="widgettitle"><?php _e( 'Most Used Categories', 'academica' ); ?></h2>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
</ul>
</div><!-- .widget -->
</div><!-- .entry-content -->
</div><!-- #post-0 -->
</div><!-- end .column-content -->
<div class="column column-narrow column-last">
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</div><!-- end .column-narrow -->
</div><!-- end #content -->
<?php get_footer(); ?>