forked from xb2016/kratos-pjax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
55 lines (55 loc) · 2.63 KB
/
index.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
<?php get_header(); ?>
<div id="container" class="container">
<div class="row">
<?php if(kratos_option('home_side_bar')=='left_side'){ ?>
<aside id="kratos-widget-area" class="col-md-4 hidden-xs hidden-sm scrollspy">
<div id="sidebar" class="affix-top">
<?php dynamic_sidebar('sidebar_tool'); ?>
</div>
</aside>
<?php } ?>
<section id="main" class="<?php echo (kratos_option('home_side_bar')=='center')?'col-md-12':'col-md-8'; ?>">
<?php
if(is_home()){kratos_banner();}
elseif(is_category()){
if(kratos_option('show_head_cat')){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('分类:','moedog');echo single_cat_title('',false); ?></h1>
<h1 class="kratos-post-header-title"><?php echo category_description(); ?></h1>
</div>
<?php }
}elseif(is_tag()){
if(kratos_option('show_head_tag')){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('标签:','moedog');echo single_cat_title('',false); ?></h1>
<h1 class="kratos-post-header-title"><?php echo category_description(); ?></h1>
</div>
<?php }
}elseif(is_search()){ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('搜索结果:','moedog');the_search_query(); ?></h1>
</div>
<?php }
if(have_posts()){
while(have_posts()){
the_post();
get_template_part('/inc/content-templates/content',get_post_format());
}
}else{ ?>
<div class="kratos-hentry clearfix">
<h1 class="kratos-post-header-title"><?php _e('很抱歉,没有找到任何内容。','moedog'); ?></h1>
</div>
<?php }
kratos_pages(3);wp_reset_query(); ?>
</section>
<?php if(kratos_option('home_side_bar')=='right_side'){ ?>
<aside id="kratos-widget-area" class="col-md-4 hidden-xs hidden-sm scrollspy">
<div id="sidebar" class="affix-top">
<?php dynamic_sidebar('sidebar_tool'); ?>
</div>
</aside>
<?php } ?>
</div>
</div>
</div>
<?php get_footer(); ?>