git-svn-id: http://xe-core.googlecode.com/svn/trunk@1644 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-06-18 11:12:07 +00:00
parent 093ee55d4a
commit 719b2ab28e
4 changed files with 45 additions and 25 deletions

View file

@ -22,6 +22,7 @@
$lang->category_name = '분류명';
$lang->expand = '펼침';
$lang->category_group_srls = '그룹제한';
$lang->search_result = '검색결과';
// 주절 주절..
$lang->about_category_name = '카테고리 이름을 입력해주세요';

View file

@ -13,6 +13,11 @@ Jeong, Chan Myeong 070601~070630
/* boardHeader */
.boardHeader { position:relative; _width:100%; border:1px solid #e1e1dd; border-bottom:none; background:#ffffff url(../images/white/bgH3.gif) repeat-x left bottom; overflow:hidden;}
.boardHeader h3 { float:left; clear:both; font-size:1.2em; padding:1em 2em .7em 1.2em; border-bottom:3px solid #fe3614; background:#ffffff url(../images/white/lineH3.gif) no-repeat right bottom;}
.boardHeader2 { width:100%; overflow:hidden; padding:1em 0 1em 0; color:#444444;}
.boardHeader2 h3 { float:left; font-size:1.4em; padding-left:1.2em; background:url(../images/white/iconH3.gif) no-repeat .5em center;}
.boardHeader2 .info { float:right; position:relative; top:.4em;}
.boardHeader2 .info q { quotes:none; font-weight:bold;}
.boardHeader2 .info strong { font:bold .9em Tahoma; color:#ff6600;}
/* boardInformation */
.boardInformation { width:100%; clear:both; margin:1em 0 .5em 0; overflow:hidden; color:#666666;}
@ -30,6 +35,7 @@ Jeong, Chan Myeong 070601~070630
.boardList th.num { background-position:-3px bottom; border-left:1px solid #ffffff; padding:0;}
.boardList th.category { padding:0 .2em 0 .5em;}
.boardList th.category.thumbStyle { background-position:-3px bottom !important; border-left:1px solid #ffffff; text-align:left;}
.boardList th.title.first-child { background-position:-3px bottom;}
.boardList th.title {}
.boardList th.author {}
.boardList th.reading { white-space:nowrap;}
@ -62,6 +68,7 @@ Jeong, Chan Myeong 070601~070630
.boardList td .replyAndTrackback img.trackback { margin-bottom:-.1em;}
.boardList td.title.bold .replyAndTrackback { font:.6em Tahoma; color:#ff6600; position:relative; top:.3em;}
.boardList td .replyAndTrackback strong { font:bold 1em Tahoma;}
.boardList td.reply { font:bold .8em Tahoma; color:#ff6600; text-align:center;}
.boardList td .thumbnailSmall { margin:0 .3em 0 .3em;}
.boardList td .thumbnailSmall img { border:1px solid #bcbdb6;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 B

View file

@ -1,35 +1,47 @@
<!--#include("header.html")-->
<!-- 목록 -->
<div style="margin-bottom:20px;">
<!-- 검색된 글 목록이 있고 권한이 있을 경우 출력 -->
<!--@if($document_list && $grant->list)-->
<!-- 검색된 글 목록이 있고 권한이 있을 경우 출력 -->
<!--@if($document_list && $grant->list)-->
<!-- 검색어가 사용되었을 경우 목록형태로 출력 -->
<!--@if($search_target && $search_keyword)-->
<div class="boardHeader2">
<h3>{$lang->search_result}</h3>
<span class="info">
<q>&quot;{$search_keyword}&quot;</q><strong>{$total_count}</strong>개의 게시물이 검색되었습니다.
</span>
</div>
<table cellspacing="0" class="boardList">
<thead>
<tr>
<th colspan="2" class="title first-child" scope="col">{$lang->title}</th>
<th class="reply" scope="col">{$lang->comment}</th>
<th class="reply" scope="col">{$lang->trackback}</th>
<th scope="col" class="date">{$lang->regdate}</th>
</tr>
</thead>
<!--@foreach($document_list as $no => $oDocument)-->
<!-- 검색어가 사용되었을 경우 목록형태로 출력 -->
<!--@if($search_target && $search_keyword)-->
<div>
<!-- 일자, 제목 출력-->
[{$oDocument->getRegdate("Y-m-d")}] <a href="#" onclick="winopen('{$oDocument->getPermanentUrl()}');return false;">{$oDocument->getTitleText()}</a>
<!-- 댓글이 있으면 댓글의 수 출력 -->
<!--@if($oDocument->getCommentCount())-->({number_format($oDocument->getCommentCount())})<!--@end-->
<!-- 엮인글이 있으면 엮인글의 수 출력 -->
<!--@if($oDocument->getTrackbackCount())-->({number_format($oDocument->getTrackbackCount())})<!--@end-->
</div>
<!-- 검색어가 없다면 내용을 바로 출력 -->
<!--@else-->
<!--#include("./view_document.html")-->
<!--@end-->
<tbody>
<tr class="bg{($no+1)%2+1}">
<td class="num">{$no}</td>
<td class="title"><a href="#" onclick="winopen('{$oDocument->getPermanentUrl()}');return false;">{$oDocument->getTitleText()}</a></td>
<td class="reply"><!--@if($oDocument->getCommentCount())-->{number_format($oDocument->getCommentCount())}<!--@end--></td>
<td class="reply"><!--@if($oDocument->getTrackbackCount())-->{number_format($oDocument->getTrackbackCount())}<!--@end--></td>
<td class="date">{$oDocument->getRegdate("Y. m. d")}</td>
</tr>
</tbody>
<!--@end-->
</table>
<!-- 검색어가 없다면 내용을 바로 출력 -->
<!--@else-->
{$lang->no_documents}
<!--@foreach($document_list as $no => $oDocument)-->
<!--#include("./view_document.html")-->
<!--@end-->
<!--@end-->
</div>
<!--@end-->
<!-- 페이지 네비게이션 -->
<div class="pageNavigation">