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

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

@ -62,6 +62,7 @@ if ($is_nogood) $colspan++;
<input type="hidden" name="spt" value="<?=$spt?>">
<input type="hidden" name="page" value="<?=$page?>">
<input type="hidden" name="sw" value="">
<table>
<caption><?=$board['bo_subject']?> 글목록</caption>
<thead>
@ -80,8 +81,8 @@ if ($is_nogood) $colspan++;
<?
for ($i=0; $i<count($list); $i++) {
?>
<tr<? if ($list[$i]['is_notice']) echo " class=\"bo_notice\"";?>>
<td class="td_bignum">
<tr class="<? if ($list[$i]['is_notice']) echo "bo_notice";?><? if ($board[1]) echo "bo_sideview";?>">
<td class="td_num">
<?
if ($list[$i]['is_notice']) // 공지사항
echo '<strong>공지</strong>';
@ -128,6 +129,7 @@ if ($is_nogood) $colspan++;
</tbody>
</table>
<? if ($list_href || $is_checkbox || $write_href) {?>
<div class="bo_fx">
<ul class="btn_bo_adm">
<? if ($list_href) { ?>
@ -144,6 +146,7 @@ if ($is_nogood) $colspan++;
<li><? if ($write_href) { ?><a href="<?=$write_href?>" class="btn01">글쓰기</a><? } ?></li>
</ul>
</div>
<? } ?>
</form>
</div>

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>
<?