Initial import from local backup (Documents-Playground/pakerpale)

This commit is contained in:
jeonghwa
2026-07-03 05:27:41 +09:00
commit 5b1bfe3390
2223 changed files with 561621 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<?php
$i = 0;
if (element('latest', $view)) {
foreach (element('latest', $view) as $key => $value) {
?>
<li><a href="<?php echo element('url', $value); ?>" title="<?php echo html_escape(element('title', $value)); ?>"><?php echo html_escape(element('title', $value)); ?></a>
<?php if (element('post_comment_count', $value)) { ?> <span class="latest_comment_count"> +<?php echo element('post_comment_count', $value); ?></span><?php } ?>
</li>
<?php
$i++;
}
}
while ($i < element('latest_limit', $view)) {
?>
<li>게시물이 없습니다</li>
<?php
$i++;
}