1 Star 1 Fork 0

chenjunlin / concise_orange

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
archive.php 2.78 KB
一键复制 编辑 原始数据 按行查看 历史
chenjunlin 提交于 2021-08-06 14:05 . 更新
<?php
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$this->need('header.php');
?>
<main class="ajaxdata">
<div class="container">
<article id="article" class="article">
<div class="post-mains"><a href="<?php $this->options->siteUrl(); ?>">首页</a> &raquo; <?php $this->archiveTitle(array(
'category' => _t('分类 %s 下的文章'),
'search' => _t('包含关键字 %s 的文章'),
'tag' => _t('标签 %s 下的文章'),
'date' => _t('在 %s 发布的文章'),
'author' => _t('作者 %s 发布的文章')
), '', ''); ?></div>
<?php if ($this->have()): ?> <!-- 判断搜索结果是否有文章,有则输出,无则提示 -->
<?php while($this->next()): ?> <!-- 文章循环开始 -->
<div class="post">
<h4 class="post-title">
<a href="<?php $this->permalink() ?>">
<?php $this->title() ?> <!-- 文章标题-->
</a>
</h4>
<div class="post-headermeta">
<span class="post-author">
<?php $this->author();?> <!--作者名称-->
</span>
<span class="post-date">
<?php $this->date();?> <!--文章发布时间-->
</span>
<span class="post-comment">
<?php $this->commentsNum('%d 条评论');?> <!--文章评论数-->
</span>
</div>
<section class="post-content">
<p class="post-main">
<?php $this->excerpt(200,"...");?> <!--文章输出200字符,超过隐藏-->
</p>
</section>
<p class="post-more">
<a href="<?php $this->permalink();?>" title="<?php $this->title();?>">
阅读全文
</a> <!--提供查看全文,地址为当前文章的详细页面-->
</p>
</div>
<?php endwhile;?><!-- 文章循环结束 -->
<?php else: ?>
<article class="post-mains">
<h2 class="post-title">没有找到内容</h2> <!-- 搜索文章结果为空则返回 -->
</article>
<?php endif; ?>
<nav class="post-bottom">
<?php $this->pageNav('上一页', '下一页', 1, '...', array('wrapTag' => 'div', 'wrapClass' => 'pagination', 'itemTag' => 'span', 'textTag' => 'span', 'currentClass' => 'page-item', 'prevClass' => 'page-prev', 'nextClass' => 'page-next','itemClass' => 'page-item'));?>
</nav>
</article>
<?php $this->need('sidebar.php'); ?>
</div>
</main>
<?php $this->need('footer.php'); ?>
PHP
1
https://gitee.com/chenjunlinabc/concise_orange.git
git@gitee.com:chenjunlinabc/concise_orange.git
chenjunlinabc
concise_orange
concise_orange
master

搜索帮助