사용자: 아웃로그인, 설문조사, 게시판스킨 스타일

This commit is contained in:
whitedot
2013-01-28 11:38:04 +09:00
parent 5891f1a77a
commit 422887316e
3 changed files with 36 additions and 33 deletions

View File

@ -9,20 +9,20 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
<section id="bo_v_info">
<h2>게시물 정보</h2>
<div>
<? if ($is_category) { ?>
분류
<strong><?=($category_name ? "{$view['ca_name']} " : "");?></strong>
<? } ?>
작성자
<strong><?=$view['name']?><? if ($is_ip_view) { echo "&nbsp;($ip)"; } ?></strong>
작성일
<strong><?=date("y-m-d H:i", strtotime($view['wr_datetime']))?></strong>
조회
<strong><?=number_format($view['wr_hit'])?>회</strong>
댓글
<strong><?=number_format($view['wr_comment'])?>건</strong>
</div>
<? if ($is_category) { ?>
<span class="sound_only">분류</span>
<?=($category_name ? "{$view['ca_name']} " : "");?>
<? } ?>
<span class="sound_only">작성자</span>
<?=$view['name']?><? if ($is_ip_view) { echo "&nbsp;($ip)"; } ?>
<span class="sound_only">작성일</span>
<?=date("y-m-d H:i", strtotime($view['wr_datetime']))?>
<span class="sound_only">아이피</span>
<?=$view['wr_ip']?>
조회
<?=number_format($view['wr_hit'])?>회
댓글
<?=number_format($view['wr_comment'])?>건
</section>
<?