mirror of
https://github.com/jkjoy/typecho-theme-farallon.git
synced 2026-06-27 23:34:25 +00:00
ad347ce0d7
根据原版增加了足迹和memo的页面 指定分类显示 增加文章页面的自定义字段说明
17 lines
729 B
PHP
17 lines
729 B
PHP
<?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; ?>
|