XE 공식 레이아웃/ 로그인위젯/ 최근글 위젯 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2112 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-01 08:10:37 +00:00
parent a8b5b5b39f
commit 14a63031f8
82 changed files with 769 additions and 0 deletions

View file

@ -0,0 +1,10 @@
.latest { padding-bottom:15px; }
.latest h2 { font-size:1em; display:block; height:21px; padding:9px 0 0 9px; margin-bottom:12px; color:#ffffff; background:url(../images/black/lineNotice.gif) no-repeat left bottom;}
.latest ul {}
.latest ul li { position:relative; height:21px; background:url(../images/black/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden;}
.latest ul li a { color:#818181; text-decoration:none; }
.latest ul li a:hover { text-decoration:underline; }
.latest ul li span { position:absolute; top:1px; right:9px; color:#999999; font:.8em Tahoma;}
.latest .more { position:absolute; top:12px; right:11px; color:#818181; font:.8em Tahoma;}
.latest a.more { text-decoration:none;}
.latest a.more:hover { text-decoration:underline;}

View file

@ -0,0 +1,10 @@
.latest { padding-bottom:15px; }
.latest h2 { font-size:1em; display:block; height:21px; padding:9px 0 0 9px; margin-bottom:12px; color:#000000; background:url(../images/white/lineNotice.gif) no-repeat left bottom;}
.latest ul {}
.latest ul li { position:relative; height:21px; background:url(../images/white/bulletD0.gif) no-repeat left 5px; padding-left:10px; overflow:hidden;}
.latest ul li a { color:#555555; text-decoration:none; }
.latest ul li a:hover { text-decoration:underline; }
.latest ul li span { position:absolute; top:1px; right:9px; color:#999999; font:.8em Tahoma;}
.latest .more { position:absolute; top:12px; right:11px; color:#54564b; font:.8em Tahoma;}
.latest a.more { text-decoration:none;}
.latest a.more:hover { text-decoration:underline;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 139 B

View file

@ -0,0 +1,21 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--@if($colorset=="black")-->
<!--%import("css/black.css")-->
<!--@else-->
<!--%import("css/white.css")-->
<!--@end-->
<div class="latest">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@end-->
<ul>
<!--@foreach($widget_info->document_list as $oDocument)-->
<li><a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a><span>{$oDocument->getRegdate("Y-m-d")}</span></li>
<!--@end-->
</ul>
<!--@if($widget_info->module_name)-->
<a href="{getUrl('','mid',$widget_info->module_name)}" class="more">more</a>
<!--@end-->
</div>

View file

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">XE 공식 레이아웃용 최신글 스킨</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 8. 1">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">XE 공식 레이아웃에 적합한 최신글 스킨입니다.</description>
</maker>
<colorset>
<color name="white">
<title xml:lang="ko">흰색 바탕용</title>
</color>
<color name="black">
<title xml:lang="ko">어두운 바탕용</title>
</color>
</colorset>
</skin>