-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
24 lines (22 loc) · 857 Bytes
/
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
<?php get_header(); ?>
<?php if (dopt('d_adindex_01_b')) printf('<div class="banner banner-navbar">' . dopt('d_adindex_01') . '</div>'); ?>
<div class="content-wrap">
<div class="content">
<?php
if (dopt('d_adindex_03_b')) printf('<div class="banner banner-contenttop">' . dopt('d_adindex_03') . '</div>');
if (!($paged && $paged > 1)) {
if (dopt('d_sticky_b')){
include 'modules/sticky.php';
}
}
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$args = array(
'caller_get_posts' => 1,
'paged' => $paged
);
query_posts($args);
include 'modules/excerpt.php';
?>
</div>
</div>
<?php get_sidebar(); get_footer(); ?>