Files
SHITOUCUO/component/post-item.php
2026-02-19 13:14:46 +08:00

17 lines
580 B
PHP

<?php if (!defined("__TYPECHO_ROOT_DIR__")) {
exit();
} ?>
<div class="mx-1 flex flex-col gap-y-12 pb-12 border-stone-100 dark:border-neutral-600">
<div></div>
<?php while ($this->next()): ?>
<?php if (isShuoShuoType($this->cid)): ?>
<?php $this->need("component/post-item-moment.php"); ?>
<?php elseif ($this->fields->Postype==1): ?>
<?php $this->need("component/post-item-tu.php"); ?>
<?php else: ?>
<?php $this->need("component/post-item-default.php"); ?>
<?php endif; ?>
<?php endwhile; ?>
</div>