<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
echo "<link rel='stylesheet' href='{$latest_skin_url}/style.css'>";
$list_count = (is_array($list) && $list) ? count($list) : 0;
//-------------------------------------------------------------------------------------------------
?>
<section class="Latest-Other">
<? for ($i=0; $i<$list_count; $i++) { ?>
<li onclick="window.open('<?=$list[$i]['href'] ;?>&p=page_other&p_menu=community')">No. <?=sprintf('%04d',$list[$i]['wr_num']*-1); ?> : <?=$list[$i]['subject'];?></li>
<? } ?>
<? if ($list_count == 0) { echo "<li class='CoinNo'>게시물이 없습니다</li>"; } ?>
</section>