-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
34 lines (34 loc) · 1.58 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
<?php get_header() ?>
<div id="main" class="container">
<div id="main-row" class="row">
<?php terx_get_sidebar('left','blog') ?>
<div id="primary" class="<?php echo TERX_PRIMARY_CLASS ?>">
<div id="content" role="main">
<section class="error-404 not-found">
<header class="page-header">
<h1 class="page-title"><?php _e('Not Found','terra') ?></h1>
</header>
<div class="entry-content">
<p class="alert alert-warning"><?php _e('<img src="' . TERX_GRAPHICS . '404.png" class="inline-block no-margin" alt="404 Unhappy Face Icon"><span class="margin-left">Sorry, the page you requested cannot be found.</span>','terra') ?></p>
<p><?php get_search_form() ?></p>
<div class="widget">
<?php the_widget('WP_Widget_Recent_Posts',array('number' => 10),array('widget_id' => '404')) ?>
</div>
<div class="widget">
<h2 class="widgettitle"><?php _e('Most Used Categories','terra') ?></h2>
<ul><?php wp_list_categories(array('orderby' => 'count','order' => 'DESC','show_count' => 1,'title_li' => '','number' => 10)) ?></ul>
</div>
<div class="widget">
<?php the_widget('WP_Widget_Archives',array('count' => 0,'dropdown' => 1),array('after_title' => '</h2>')) ?>
</div>
<div class="widget">
<?php the_widget('WP_Widget_Tag_Cloud') ?>
</div>
</div><!-- /.entry-content -->
</section>
</div><!-- /#content -->
</div><!-- /#primary -->
<?php terx_get_sidebar('right','blog') ?>
</div><!-- /#main-row -->
</div><!-- /#main -->
<?php get_footer() ?>