사용자: 게시판스킨 읽기 글제목의 분류 스타일
This commit is contained in:
@ -264,6 +264,7 @@ table a {color:#000;text-decoration:none}
|
||||
#bo_v {position:relative;margin-bottom:30px}
|
||||
#bo_v a {color:#000;text-decoration:none}
|
||||
#bo_v_h1 {padding:30px 20px 10px;font-size:1.2em;line-height:1.4em}
|
||||
#bo_v_h1 span {display:inline-block;margin-right:5px;color:#109ff1}
|
||||
#bo_v_info {padding:0 20px 15px;border-bottom:1px solid #f0f0f0}
|
||||
#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_info strong {display:inline-block;margin:0 15px 0 5px;font-weight:normal}
|
||||
@ -350,4 +351,6 @@ table a {color:#000;text-decoration:none}
|
||||
.pg_prev {border-right:1px solid #ddd}
|
||||
.pg_end,
|
||||
.pg_next {border-left:1px solid #ddd}
|
||||
.pg_current {background:#494949;color:#fff}
|
||||
.pg_current {background:#494949;color:#fff}
|
||||
|
||||
.pg_total {text-align:center}
|
||||
@ -159,7 +159,7 @@ if ($is_nogood) $colspan++;
|
||||
<!-- 페이지 -->
|
||||
<? echo $write_pages; ?>
|
||||
|
||||
<p>
|
||||
<p class="pg_total">
|
||||
<span>Total <?=number_format($total_count)?>건</span>
|
||||
<?=$page?> 페이지
|
||||
</p>
|
||||
|
||||
@ -5,7 +5,12 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<p id="bo_v_title"><strong><?=$board['bo_subject']?></strong></p>
|
||||
|
||||
<div id="bo_v" class="cbg">
|
||||
<h1 id="bo_v_h1"><? if ($is_category) { ?> <?=($category_name ? "{$view['ca_name']} " : "");?><? } ?><?=cut_hangul_last(get_text($view['wr_subject']))?></h1>
|
||||
<h1 id="bo_v_h1">
|
||||
<? if ($is_category) { // 분류가 있다면?>
|
||||
<span><?=($category_name ? "{$view['ca_name']} " : "");?></span>
|
||||
<? } // 분류 출력 끝 ?>
|
||||
<?=cut_hangul_last(get_text($view['wr_subject'])) // 글제목 출력?>
|
||||
</h1>
|
||||
|
||||
<section id="bo_v_info">
|
||||
<h2>게시물 정보</h2>
|
||||
|
||||
Reference in New Issue
Block a user