<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
echo "<link rel='stylesheet' href='{$latest_skin_url}/style.css'>";
$list_count = (is_array($list) && $list) ? count($list) : 0;
//-------------------------------------------------------------------------------------------------
?>
<?php
echo $board_for;
for ($i=0; $i<=$list_count; $i++) {
$img = str_replace('.png','.jpg',$list[$i]['image']); /* 확장자 변경 : png -> jpg */
$img = str_replace('originals','236x',$img); /* 원본 이미지 주소 대비 : 섬네일 564 주소 */
$img = str_replace('1200x','236x',$img);
$img = str_replace('736x','236x',$img);
$img = str_replace('564x','236x',$img);
?>
<?
if ($list[$i]['collection_1'] == $board_category) {
$n += 1;
?>
<ul>
<li style="background-image:url('<?=$img;?>'); background-size:cover;"></li>
</ul>
<?
}
if ($n > 23) { break; }
}
?>