First Commit

This commit is contained in:
2026-05-27 11:46:44 +09:00
commit b898b57d38
2351 changed files with 198344 additions and 0 deletions

View File

@ -0,0 +1,41 @@
<?php
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
include_once(G5_LIB_PATH.'/thumbnail.lib.php');
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$latest_skin_url.'/style.css">', 0);
$thumb_width = 446;
$thumb_height = 343;
?>
<ul>
<?php
for ($i=0; $i<count($list); $i++) {
$thumb = get_list_thumbnail($bo_table, $list[$i]['wr_id'], $thumb_width, $thumb_height, false, true);
if($thumb['src']) {
$img = $thumb['src'];
} else {
$img = G5_IMG_URL.'/no_img.png';
$thumb['alt'] = '이미지가 없습니다.';
}
$img_content = '<img src="'.$img.'" alt="'.$thumb['alt'].'" >';
?>
<li>
<a href="<?php echo $list[$i]['href'] ?>">
<div class="category">
<p>&#183; NEWS</p>
</div>
<div class="date">
<h4><?php echo date("d", strtotime($list[$i]['wr_datetime'])) ?></h4>
<span><?php echo date("Y-m", strtotime($list[$i]['wr_datetime'])) ?></span>
</div>
<dl>
<dt><?php echo $list[$i]['subject'] ?></dt>
<dd> <?php echo mb_strimwidth($list[$i]['wr_content'], '0', '500', '...', 'utf-8');?></dd>
</dl>
</a>
</li>
<?}?>
</ul>