forked from disgogo/flexmarket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
65 lines (45 loc) · 1.85 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php get_header(); ?>
<!-- Page -->
<div id="page-wrapper">
<div class="header-section">
<div class="outercontainer">
<div class="container">
<div class="clear padding30"></div>
<h1 class="page-header"><span>Page Not Found</span></h1>
<div class="clear padding15"></div>
</div><!-- / container -->
</div><!-- / outercontainer -->
</div><!-- / header-section -->
<div class="content-section">
<div class="outercontainer">
<div class="clear padding30"></div>
<div class="container">
<div class="row-fluid">
<div class="span8">
<p>It seems that we are unable to find what you are looking for. Perhaps try one of the links below:</p>
<div class="padding10"></div>
<h4>Most Used Categories</h4>
<ul>
<?php wp_list_categories( array( 'orderby' => 'count', 'order' => 'DESC', 'show_count' => 1, 'title_li' => '', 'number' => 10 ) ); ?>
</ul>
<div class="padding10"></div>
<?php
$archive_stuff = '<p>Try looking in the monthly archives:</p>';
the_widget( 'WP_Widget_Archives', array('count' => 0 , 'dropdown' => 1 ), array( 'before_title' => '<h4>', 'after_title' => '</h4>'.$archive_stuff ) );
?>
<div class="padding20"></div>
<p>Or, use the search box below:</p>
<?php get_search_form(); ?>
<div class="padding20"></div>
</div><!-- / span8 -->
<div id="sidebar" class="span4">
<?php get_sidebar(); ?>
</div>
</div><!-- / row-fluid -->
<div class="padding20"></div>
</div><!-- / container -->
</div><!-- / outercontainer -->
</div><!-- / content-section -->
</div><!-- / page-wrapper -->
<?php get_template_part('footer', 'widget'); ?>
<?php get_footer(); ?>