加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
index.php 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
云落 提交于 2015-04-20 17:58 . add
<?php
get_header(); ?>
<?php
if (git_get_option('git_adindex_01')) printf('<div class="banner banner-navbar">' . git_get_option('git_adindex_01') . '</div>'); ?>
<div class="content-wrap">
<div class="content">
<?php
if (git_get_option('git_adindex_03')) printf('<div class="banner banner-contenttop">' . git_get_option('git_adindex_03') . '</div>');
if ($paged && $paged > 1) {
printf('<header class="archive-header"><h1>最新发布 第' . $paged . '页</h1><div class="archive-header-info"><p>' . get_option('blogname') . get_option('blogdescription') . '</p></div></header>');
} else {
if (git_get_option('git_sticky_b')) include 'modules/sticky.php';
if (git_get_option('git_slick_b') && !G_is_mobile()) include 'modules/slick.php';
}
if (git_get_option('git_cms_b')) {
include 'modules/cms.php';
} else {
$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
if (!G_is_mobile()) { ?>
<?php
get_sidebar(); ?>
<?php
} ?>
<?php
get_footer(); ?>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化