根据原版增加了足迹和memo的页面
指定分类显示
增加文章页面的自定义字段说明
This commit is contained in:
浪子
2025-03-21 11:47:08 +08:00
parent 5dc3ec7059
commit ad347ce0d7
7 changed files with 223 additions and 226 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php if (!defined('__TYPECHO_ROOT_DIR__')) exit; ?>
<?php while($this->next()): ?>
<article class="post--item post--item__status" itemtype="http://schema.org/Article" itemscope="itemscope">
<div class="content">
<header>
<img src="<?php $this->options->logoUrl() ?>" class="avatar" width="48" height="48" />
<a datetime='<?php $this->date('Y-m-d'); ?>' class="humane--time" href="<?php $this->permalink() ?>"
itemprop="datePublished">
<?php $this->date('Y-m-d'); ?>
</a>
</header>
<div class="description" itemprop="about">
<?php $this->excerpt(200, '...'); ?>
</div>
</div>
</article>
<?php endwhile; ?>