加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
search.php 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
ouyangyanhuo 提交于 2022-04-04 16:10 . version1.2.6
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php $this->need('header.php'); ?>
<main>
<header>
<div class="container">
<h1>搜索</h1>
<p class="subtitle">包含关键字<span class="count"><?php $this->archiveTitle(array('search' => _t('%s')), ''); ?></span>的所有文章。</p>
</div>
</header>
<section>
<div class="container">
<form id="search" method="post" action="<?php $this->options->siteUrl(); ?>" role="search">
<input id="search-query" type="text" id="s" name="s" class="text" placeholder="Search for anything...">
</form>
<section>
<section>
<div class="posts">
<?php while($this->next()): ?>
<div class="post">
<a href="<?php $this->permalink() ?>">
<div class="post-row">
<time><?php $this->date('M j'); ?></time>
<h3><?php $this->title() ?></h3>
</div>
</a>
</div>
<?php endwhile; ?>
</div>
</section>
</section>
</div>
<div class="container">
<nav class="flex container suggested">
<?php $this->pageLink('上一页','prev'); ?>
<?php $this->pageLink('下一页','next'); ?>
</nav>
</div>
</section>
</main>
<?php $this->need('footer.php'); ?>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化