사용자: 게시판스킨 읽기
This commit is contained in:
15
css/def.css
15
css/def.css
@ -289,11 +289,11 @@ h6 {margin:0 0 20px}
|
||||
/* 게시판 읽기 */
|
||||
#bo_v_title {text-align:center}
|
||||
#bo_v {position:relative;margin-bottom:30px;border-top:3px solid #666;border-bottom:1px solid #ccc}
|
||||
#bo_v_h1 {margin:0 !important;padding:15px 0 0;font-size:1em}
|
||||
#bo_v_h1 {margin:0 !important;padding:15px 0 0 10px;font-size:1em}
|
||||
#bo_v_info {padding:0 0 10px;border-bottom:1px solid #efeada;zoom:1}
|
||||
#bo_v_info:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_info dl {font-size:0.75em}
|
||||
#bo_v_info dl {padding:0 0 0 10px;font-size:0.75em}
|
||||
#bo_v_info dt {float:left}
|
||||
#bo_v_info dd {float:left;margin:0 20px 0 10px}
|
||||
#bo_v_top {zoom:1}
|
||||
@ -307,6 +307,17 @@ h6 {margin:0 0 20px}
|
||||
#bo_v_article {zoom:1}
|
||||
#bo_v_article:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#bo_v_article h1 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_article p {padding:0 10px}
|
||||
#bo_v_file {border-bottom:1px solid #666;background:#555;font-size:0.75em}
|
||||
#bo_v_file h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_file ul {margin:0;padding:0;list-style:none}
|
||||
#bo_v_file a {display:inline-block;margin-top:5px;padding:5px 10px;color:#fff}
|
||||
.bo_v_file_cnt {display:inline-block;margin-left:10px;color:#ddd}
|
||||
#bo_v_link {border-bottom:1px solid #666;background:#555;font-size:0.75em}
|
||||
#bo_v_link h2 {margin:0;padding:0;height:0;overflow:hidden}
|
||||
#bo_v_link ul {margin:0;padding:0;list-style:none}
|
||||
#bo_v_link a {display:inline-block;margin-top:5px;padding:5px 10px;color:#fff}
|
||||
.bo_v_link_cnt {display:inline-block;margin-left:10px;color:#ddd}
|
||||
#bo_v_act {margin:20px 0;text-align:center}
|
||||
#bo_v_act a {margin-right:5px;vertical-align:top}
|
||||
#bo_v_act strong {color:#ff7200}
|
||||
|
||||
@ -25,33 +25,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
</dl>
|
||||
</section>
|
||||
|
||||
<aside id="bo_v_top">
|
||||
<h2>게시물 상단 링크</h2>
|
||||
<!-- 링크 버튼 -->
|
||||
<? if ($update_href || $delete_href) {?>
|
||||
<ul id="bo_v_my">
|
||||
<? if ($update_href) { ?><li><a href="<?=$update_href?>" class="btn02">수정</a></li><? } ?>
|
||||
<? if ($delete_href) { ?><li><a href="<?=$delete_href?>" class="btn02">삭제</a></li><? } ?>
|
||||
</ul>
|
||||
<? } ?>
|
||||
|
||||
<?
|
||||
ob_start();
|
||||
?>
|
||||
<ul class="bo_v_com">
|
||||
<? if ($copy_href) { ?><li><a href="<?=$copy_href?>" class="btn03">복사</a></li><? } ?>
|
||||
<? if ($move_href) { ?><li><a href="<?=$move_href?>" class="btn03">이동</a></li><? } ?>
|
||||
<? if ($search_href) { ?><li><a href="<?=$search_href?>" class="btn02">검색</a></li><? } ?>
|
||||
<li><a href="<?=$list_href?>" class="btn02">목록</a></li>
|
||||
<? if ($reply_href) { ?><li><a href="<?=$reply_href?>" class="btn02">답변</a></li><? } ?>
|
||||
<? if ($write_href) { ?><li><a href="<?=$write_href?>" class="btn01">글쓰기</a></li><? } ?>
|
||||
</ul>
|
||||
<?
|
||||
$link_buttons = ob_get_contents();
|
||||
ob_end_flush();
|
||||
?>
|
||||
</aside>
|
||||
|
||||
<? if ($view['file'][$i]) {?>
|
||||
<section id="bo_v_file">
|
||||
<h2>첨부파일</h2>
|
||||
@ -66,7 +39,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<li>
|
||||
<a href="javascript:file_download('<?=$view['file'][$i]['href']?>', '<?=urlencode($view['file'][$i]['source'])?>');">
|
||||
<span><?=$view['file'][$i]['source']?> (<?=$view['file'][$i]['size']?>)</span>
|
||||
<span><?=$view['file'][$i]['download']?></span>
|
||||
<span class="bo_v_file_cnt"><?=$view['file'][$i]['download']?></span>
|
||||
<span>DATE : <?=$view['file'][$i]['datetime']?></span>
|
||||
</a>
|
||||
</li>
|
||||
@ -93,7 +66,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<li>
|
||||
<a href="<?=$view['link_href'][$i]?>" target="_blank">
|
||||
<span><?=$link?></span>
|
||||
<span><?=$view['link_hit'][$i]?></span>
|
||||
<span class="bo_v_link_cnt"><?=$view['link_hit'][$i]?>회 연결</span>
|
||||
</a>
|
||||
</li>
|
||||
<?
|
||||
@ -104,6 +77,33 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
</section>
|
||||
<? } ?>
|
||||
|
||||
<aside id="bo_v_top">
|
||||
<h2>게시물 상단 링크</h2>
|
||||
<!-- 링크 버튼 -->
|
||||
<? if ($update_href || $delete_href) {?>
|
||||
<ul id="bo_v_my">
|
||||
<? if ($update_href) { ?><li><a href="<?=$update_href?>" class="btn02">수정</a></li><? } ?>
|
||||
<? if ($delete_href) { ?><li><a href="<?=$delete_href?>" class="btn02">삭제</a></li><? } ?>
|
||||
</ul>
|
||||
<? } ?>
|
||||
|
||||
<?
|
||||
ob_start();
|
||||
?>
|
||||
<ul class="bo_v_com">
|
||||
<? if ($copy_href) { ?><li><a href="<?=$copy_href?>" class="btn03">복사</a></li><? } ?>
|
||||
<? if ($move_href) { ?><li><a href="<?=$move_href?>" class="btn03">이동</a></li><? } ?>
|
||||
<? if ($search_href) { ?><li><a href="<?=$search_href?>" class="btn02">검색</a></li><? } ?>
|
||||
<li><a href="<?=$list_href?>" class="btn02">목록</a></li>
|
||||
<? if ($reply_href) { ?><li><a href="<?=$reply_href?>" class="btn02">답변</a></li><? } ?>
|
||||
<? if ($write_href) { ?><li><a href="<?=$write_href?>" class="btn01">글쓰기</a></li><? } ?>
|
||||
</ul>
|
||||
<?
|
||||
$link_buttons = ob_get_contents();
|
||||
ob_end_flush();
|
||||
?>
|
||||
</aside>
|
||||
|
||||
<article id="bo_v_article">
|
||||
<header>
|
||||
<h1>본문</h1>
|
||||
|
||||
Reference in New Issue
Block a user