cozy_simple 게시판/블로그/위젯 스킨 추가

git-svn-id: http://xe-core.googlecode.com/svn/trunk@2166 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
zero 2007-08-03 13:11:48 +00:00
parent 01455a4107
commit d26aacc13e
462 changed files with 9514 additions and 0 deletions

View file

@ -0,0 +1,33 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
<!--%import("css/red.css")-->
<!--@end-->
<div class="archiveBox">
<div class="header">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>archives</h2>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->archive_list as $val)-->
<!--@if($layout_info->mid)-->
<li><a href="{getUrl('','mid',$layout_info->mid,'search_target','regdate','search_keyword',$val->month)}">{zdate($val->month,'Y. m')}</a> ({$val->count})</li>
<!--@else-->
<li><a href="{getUrl('','mid',$mid,'search_target','regdate','search_keyword',$val->month)}">{zdate($val->month,'Y. m')}</a> ({$val->count})</li>
<!--@end-->
<!--@end-->
</ul>
</div>

View file

@ -0,0 +1 @@
div.archiveBox .header h2 { font-size:1em; color:#1187d8;}

View file

@ -0,0 +1 @@
div.archiveBox .header h2 { font-size:1em; color:#9ab09f;}

View file

@ -0,0 +1,11 @@
div.archiveBox { padding-bottom:1em;}
div.archiveBox .header { padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; }
*:first-child+html div.archiveBox .header { height:20px; color:#ef2121;}
div.archiveBox ul { padding:.5em; overflow:hidden;}
div.archiveBox ul li { color:#a4a4a4; margin-right:.1em; line-height:1.5em; font-size:.9em;}
div.archiveBox ul li a { font-size:.9em; color:#a4a4a4;}
div.archiveBox ul li.typeA a { color:#717171; font-weight:bold;}
div.archiveBox ul li.typeB a { color:#3d3d3d;}
div.archiveBox ul li.typeC a { font-weight:bold;}
div.archiveBox .tag_sort { width:100%; border-top:1px dashed #ababab; border-bottom:1px dashed #ababab; text-align:center; overflow:hidden;}

View file

@ -0,0 +1 @@
div.archiveBox .header h2 { font-size:1em; color:#8dc63f;}

View file

@ -0,0 +1 @@
div.archiveBox .header h2 { font-size:1em; color:#f70795;}

View file

@ -0,0 +1 @@
div.archiveBox .header h2 { font-size:1em; color:#ef2121;}

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1,84 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
{@ $colorset = "red" }
<!--%import("css/red.css")-->
<!--@end-->
<div class="calendarBox">
<table cellspacing="0">
<caption>
<span class="fl">{zdate($widget_info->cur_date,"Y")}.<span class="mm">{zdate($widget_info->cur_date,"m")}</span></span>
<span class="fr"><a href="{getUrl('search_target','regdate','search_keyword',$widget_info->prev_month)}"><img src="./images/{$colorset}/buttonArrowCalendarLeft.gif" alt="prev"></a><a href="{getUrl('search_target','regdate','search_keyword',$widget_info->next_month)}"><img src="./images/{$colorset}/buttonArrowCalendarRight.gif" alt="next"></a></span>
</caption>
<thead>
<tr>
<th class="sun" scope="col">S</th>
<th scope="col">M</th>
<th scope="col">T</th>
<th scope="col">W</th>
<th scope="col">T</th>
<th scope="col">F</th>
<th scope="col">S</th>
</tr>
</thead>
{@ $day = ''}
<tbody>
<!--@for($i=0;$i<6;$i++)-->
<!--@if($day < $widget_info->last_day)-->
<tr>
<!--@for($j=0;$j<7;$j++)-->
{@ $num = $i*7 + $j}
<!--@if(!$started && $num >= $widget_info->start_week)-->
{@ $started = true}
{@ $day = 1}
{@ $cur_date = $widget_info->cur_date.sprintf('%02d',$day) }
<!--@elseif($started)-->
{@ $day++}
{@ $cur_date = $widget_info->cur_date.sprintf('%02d',$day) }
<!--@end-->
<!--@if($cur_date == date("Ymd"))-->{@ $today_class = "today"}<!--@else-->{@ $today_class = ""}<!--@end-->
<!--@if($j==0)-->{@ $cell_class_name = "sun"}<!--@else-->{@ $cell_class_name = ""}<!--@end-->
<!--@if($widget_info->calendar[$cur_date])-->
{@ $item_class_name = "posted"}
<!--@if($layout_info->mid)-->
{@ $day_link = getUrl('','mid',$layout_info->mid,'search_target','regdate','search_keyword',$cur_date) }
<!--@else-->
{@ $day_link = getUrl('','mid',$mid,'search_target','regdate','search_keyword',$cur_date) }
<!--@end-->
<!--@else-->
{@ $item_class_name = ""}
{@ $day_link = ''}
<!--@end-->
<td class="{$today_class} {$cell_class_name} {$item_class_name}">
<!--@if($day <= $widget_info->last_day)-->
<!--@if($day_link)-->
<a href="{$day_link}">{$day}</a>
<!--@else-->
{$day}
<!--@end-->
<!--@end-->
</td>
<!--@end-->
</tr>
<!--@end-->
<!--@end-->
</tbody>
</table>
</div>

View file

@ -0,0 +1 @@
div.calendarBox table caption { font:bold 1em ; color:#1187d8; padding:1em;}

View file

@ -0,0 +1 @@
div.calendarBox table caption { font:bold 1em ; color:#9ab09f; padding:1em;}

View file

@ -0,0 +1,17 @@
div.calendarBox {}
div.calendarBox table { width:100%; background:url(../images/bg_line_dot_x.gif) repeat-x left top;}
div.calendarBox table caption .mm { font:bold 1em ; color:#555650;}
div.calendarBox table caption a { padding:.2em;}
div.calendarBox table caption a img { vertical-align:middle;}
div.calendarBox table th { padding:.6em 0;}
div.calendarBox table td { padding:.25em 0;}
div.calendarBox table th { font:bold .7em tahoma; color:#717171;}
div.calendarBox table th.sun { color:#000000;}
div.calendarBox table td { text-align:center; font:.8em Tahoma; color:#9a9a9a;}
div.calendarBox table td a { font:.7em Tahoma; color:#9a9a9a;}
div.calendarBox table td.sun { color:#000000;}
div.calendarBox table td.sun a { color:#000000;}
div.calendarBox table td.today a { font-weight:bold; color:#54564b;}
div.calendarBox table td.posted a { text-decoration:underline;}

View file

@ -0,0 +1 @@
div.calendarBox table caption { font:bold 1em ; color:#8dc63f; padding:1em;}

View file

@ -0,0 +1 @@
div.calendarBox table caption { font:bold 1em ; color:#f70795; padding:1em;}

View file

@ -0,0 +1 @@
div.calendarBox table caption { font:bold 1em ; color:#ec1a25; padding:1em;}

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 B

View file

@ -0,0 +1,386 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="index" href="/" />
<link rel="prev" href="/perv" />
<link rel="next" href="/next" />
<title>제로보드 팀 블로그 &gt; blog</title>
<style type="text/css">
<!--
@import url("../../css/default.css");
@import url("../../css/layout.css");
@import url("../../css/module.css");
-->
</style>
<script type="text/javascript" src="../../js/default.js"></script>
</head>
<body id="blog">
<div id="bodyWrap">
<div id="login_menu">
<div class="login">
<a href="#"><img src="../../img/btn4_logout.gif" /></a>
<a href="#"><img src="../../img/btn4_rss.gif" /></a>
</div>
<ul class="member">
<li><a href="#"><img src="../../img/txt_message.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_friend.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_my.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_admin.gif" /></a></li>
</ul>
</div>
<div id="header">
<h1><a href="#">#addcozy</a></h1>
<p id="tagLine">제로보드를 만드는 사람들의 이야기...</p>
<ul id="globalNavigation">
<li class="no_bg"><a href="#">prologe</a></li>
<li class="on"><a href="#">blog</a></li>
<li><a href="#">guest</a></li>
</ul>
</div>
<div id="contentBody">
<div id="columnLeft">
<div id="profile" class="boxTypeA">
<img src="../../img/@profile.png" alt="My Profile Image" width="153" height="190" class="iePngFix profile" />
<dl id="hello">
<dt><a href="#"><strong>코지</strong> (addcozy)</a></dt>
<dd>안녕하세요~ 코지예요.</dd>
</dl>
<ul id="admin">
<li class="write"><a href="#">Write</a></li>
<li class="setup"><a href="#">Admin</a></li>
</ul>
</div>
<div id="category" class="boxTypeB">
<div class="header">
<h2>category</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="카테고리 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('categoryList');" /></span>
</div>
<ul id="categoryList">
<li><a href="#">Depth 1-1</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-2</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-3</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="tag" class="boxTypeB">
<div class="header">
<h2>tags</h2>
</div>
<ul class="tagList">
<li><a href="#">어리석은</a>,</li>
<li class="typeC"><a href="#">음악</a>,</li>
<li class="typeB"><a href="#">연예시대</a>,</li>
<li class="typeA"><a href="#">친구</a>,</li>
<li><a href="#">겨울바다</a>,</li>
<li class="typeC"><a href="#">딸기</a>,</li>
<li><a href="#">상큼한것</a>,</li>
<li><a href="#">수영장</a>,</li>
<li class="typeC"><a href="#">던킨도너츠</a>,</li>
<li><a href="#">추억</a>,</li>
<li class="typeB"><a href="#">빨간자전거</a>,</li>
<li><a href="#">여행</a>,</li>
<li><a href="#">월드타운</a>,</li>
<li class="typeC"><a href="#">유럽여행</a>,</li>
<li class="typeA"><a href="#">프라하</a></li>
</ul>
<div class="tag_sort">
<a href="#" class="showAll">all</a><a href="#" class="showAll">recent</a><a href="#" class="showAll no_bg">popular</a>
</div>
</div>
<div id="neighbor" class="boxTypeB">
<div class="header">
<h2>neighbor</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="이웃 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('neighborList')" /></span>
</div>
<ul id="neighborList">
<li><a href="#neighborList1" onclick="showHide('neighborList1'); return false;">주변.</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList1">
<li><a href="#">디자인기능UP 1..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList2" onclick="showHide('neighborList2'); return false;">디자인.수집</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList2">
<li><a href="#">디자인기능UP 2..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList3" onclick="showHide('neighborList3'); return false;">관심.</a>
<ul id="neighborList3">
<li><a href="#">디자인기능UP 3..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
</ul>
</div>
<div id="searchBox">
<form action="" method="post">
<fieldset>
<legend>검색</legend>
<input name="" type="text" class="inputTypeText fl" style="width:102px" />
<span class="fr"><a href="#"><img src="../../img/btn2_search.gif" /></a></span>
</fieldset>
</form>
</div>
<div id="calendar">
<table cellspacing="0" summary="해당 날짜의 포스팅으로 이동 합니다">
<caption>
<p class="fl">2007.<span class="mm">05</span></p>
<p class="fr"><a href="#"><img src="../../img/buttonArrowCalendarLeft.gif" alt="이전달" width="13" height="13" /></a><a href="#"><img src="../../img/buttonArrowCalendarRight.gif" alt="다음달" width="13" height="13" /></a></p>
</caption>
<thead>
<tr>
<th class="sun" scope="col">S</th>
<th scope="col">M</th>
<th scope="col">T</th>
<th scope="col">W</th>
<th scope="col">T</th>
<th scope="col">F</th>
<th scope="col">S</th>
</tr>
</thead>
<tbody>
<tr>
<td class="sun">&nbsp;</td>
<td>&nbsp;</td>
<td><a href="#">1</a></td>
<td><a href="#">2</a></td>
<td class="today"><a href="#">3</a></td>
<td><a href="#">4</a></td>
<td><a href="#">5</a></td>
</tr>
<tr>
<td class="sun"><a href="#">6</a></td>
<td><a href="#">7</a></td>
<td><a href="#">8</a></td>
<td><a href="#">9</a></td>
<td><a href="#">10</a></td>
<td><a href="#">11</a></td>
<td><a href="#">12</a></td>
</tr>
<tr>
<td class="sun"><a href="#">13</a></td>
<td class="posted"><a href="#">14</a></td>
<td><a href="#">15</a></td>
<td><a href="#">16</a></td>
<td><a href="#">17</a></td>
<td><a href="#">18</a></td>
<td><a href="#">19</a></td>
</tr>
<tr>
<td class="sun"><a href="#">20</a></td>
<td><a href="#">21</a></td>
<td><a href="#">22</a></td>
<td><a href="#">23</a></td>
<td><a href="#">24</a></td>
<td><a href="#">25</a></td>
<td><a href="#">26</a></td>
</tr>
<tr>
<td class="sun"><a href="#">27</a></td>
<td><a href="#">28</a></td>
<td><a href="#">29</a></td>
<td><a href="#">30</a></td>
<td><a href="#">31</a></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="content">
<div class="boardHeader2">
<h3>검색결과</h3>
<span class="info">
<q>&quot;공감&quot;</q> search result : total <strong>23</strong>
</span>
</div>
<table cellspacing="0" summary="게시물 목록" class="boardList">
<thead>
<tr height="2">
<th scope="col" class="title" colspan="2"></th>
<th scope="col" class="recommend"></th>
<th scope="col" class="date"></th>
</tr>
<tr>
<th scope="col" class="title" colspan="2"><img src="../../img/txt_title.gif" /></th>
<th scope="col" class="recommend"><a href="#"><img src="../../img/txt_reply.gif" /></a></th>
<th scope="col" class="date"><img src="../../img/txt_date.gif" /></th>
</tr>
</thead>
<tbody>
<tr>
<td class="num">15</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">14</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">13</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">12</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">11</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">10</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">9</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">8</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">7</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">6</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">5</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">4</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">3</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">2</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">1</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.01.01</td>
</tr>
</tbody>
</table>
<div class="pageNavigation">
<a href="#" class="goToFirst"><img src="../../img/icon_gofirst.gif" alt="첫페이지" width="7" height="5" /></a>
<a href="#">11</a>
<span class="current">12</span>
<a href="#">13</a>
<a href="#">14</a>
<a href="#">15</a>
<a href="#">16</a>
<a href="#">17</a>
<a href="#">18</a>
<a href="#">19</a>
<a href="#">20</a>
<a href="#" class="goToLast"><img src="../../img/icon_golast.gif" alt="끝페이지" width="7" height="5" /></a>
</div>
<div class="buttonRight">
<a href="#" class="buttonTypeA"><img src="../../img/btn_write.gif" /></a>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

View file

@ -0,0 +1,386 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="index" href="/" />
<link rel="prev" href="/perv" />
<link rel="next" href="/next" />
<title>제로보드 팀 블로그 &gt; blog</title>
<style type="text/css">
<!--
@import url("../../css/default.css");
@import url("../../css/layout.css");
@import url("../../css/module.css");
-->
</style>
<script type="text/javascript" src="../../js/default.js"></script>
</head>
<body id="blog">
<div id="bodyWrap">
<div id="login_menu">
<div class="login">
<a href="#"><img src="../../img/btn4_logout.gif" /></a>
<a href="#"><img src="../../img/btn4_rss.gif" /></a>
</div>
<ul class="member">
<li><a href="#"><img src="../../img/txt_message.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_friend.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_my.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_admin.gif" /></a></li>
</ul>
</div>
<div id="header">
<h1><a href="#">#addcozy</a></h1>
<p id="tagLine">제로보드를 만드는 사람들의 이야기...</p>
<ul id="globalNavigation">
<li class="no_bg"><a href="#">prologe</a></li>
<li class="on"><a href="#">blog</a></li>
<li><a href="#">guest</a></li>
</ul>
</div>
<div id="contentBody">
<div id="columnLeft">
<div id="profile" class="boxTypeA">
<img src="../../img/@profile.png" alt="My Profile Image" width="153" height="190" class="iePngFix profile" />
<dl id="hello">
<dt><a href="#"><strong>코지</strong> (addcozy)</a></dt>
<dd>안녕하세요~ 코지예요.</dd>
</dl>
<ul id="admin">
<li class="write"><a href="#">Write</a></li>
<li class="setup"><a href="#">Admin</a></li>
</ul>
</div>
<div id="category" class="boxTypeB">
<div class="header">
<h2>category</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="카테고리 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('categoryList');" /></span>
</div>
<ul id="categoryList">
<li><a href="#">Depth 1-1</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-2</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-3</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="tag" class="boxTypeB">
<div class="header">
<h2>tags</h2>
</div>
<ul class="tagList">
<li><a href="#">어리석은</a>,</li>
<li class="typeC"><a href="#">음악</a>,</li>
<li class="typeB"><a href="#">연예시대</a>,</li>
<li class="typeA"><a href="#">친구</a>,</li>
<li><a href="#">겨울바다</a>,</li>
<li class="typeC"><a href="#">딸기</a>,</li>
<li><a href="#">상큼한것</a>,</li>
<li><a href="#">수영장</a>,</li>
<li class="typeC"><a href="#">던킨도너츠</a>,</li>
<li><a href="#">추억</a>,</li>
<li class="typeB"><a href="#">빨간자전거</a>,</li>
<li><a href="#">여행</a>,</li>
<li><a href="#">월드타운</a>,</li>
<li class="typeC"><a href="#">유럽여행</a>,</li>
<li class="typeA"><a href="#">프라하</a></li>
</ul>
<div class="tag_sort">
<a href="#" class="showAll">all</a><a href="#" class="showAll">recent</a><a href="#" class="showAll no_bg">popular</a>
</div>
</div>
<div id="neighbor" class="boxTypeB">
<div class="header">
<h2>neighbor</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="이웃 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('neighborList')" /></span>
</div>
<ul id="neighborList">
<li><a href="#neighborList1" onclick="showHide('neighborList1'); return false;">주변.</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList1">
<li><a href="#">디자인기능UP 1..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList2" onclick="showHide('neighborList2'); return false;">디자인.수집</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList2">
<li><a href="#">디자인기능UP 2..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList3" onclick="showHide('neighborList3'); return false;">관심.</a>
<ul id="neighborList3">
<li><a href="#">디자인기능UP 3..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
</ul>
</div>
<div id="searchBox">
<form action="" method="post">
<fieldset>
<legend>검색</legend>
<input name="" type="text" class="inputTypeText fl" style="width:102px" />
<span class="fr"><a href="#"><img src="../../img/btn2_search.gif" /></a></span>
</fieldset>
</form>
</div>
<div id="calendar">
<table cellspacing="0" summary="해당 날짜의 포스팅으로 이동 합니다">
<caption>
<p class="fl">2007.<span class="mm">05</span></p>
<p class="fr"><a href="#"><img src="../../img/buttonArrowCalendarLeft.gif" alt="이전달" width="13" height="13" /></a><a href="#"><img src="../../img/buttonArrowCalendarRight.gif" alt="다음달" width="13" height="13" /></a></p>
</caption>
<thead>
<tr>
<th class="sun" scope="col">S</th>
<th scope="col">M</th>
<th scope="col">T</th>
<th scope="col">W</th>
<th scope="col">T</th>
<th scope="col">F</th>
<th scope="col">S</th>
</tr>
</thead>
<tbody>
<tr>
<td class="sun">&nbsp;</td>
<td>&nbsp;</td>
<td><a href="#">1</a></td>
<td><a href="#">2</a></td>
<td class="today"><a href="#">3</a></td>
<td><a href="#">4</a></td>
<td><a href="#">5</a></td>
</tr>
<tr>
<td class="sun"><a href="#">6</a></td>
<td><a href="#">7</a></td>
<td><a href="#">8</a></td>
<td><a href="#">9</a></td>
<td><a href="#">10</a></td>
<td><a href="#">11</a></td>
<td><a href="#">12</a></td>
</tr>
<tr>
<td class="sun"><a href="#">13</a></td>
<td class="posted"><a href="#">14</a></td>
<td><a href="#">15</a></td>
<td><a href="#">16</a></td>
<td><a href="#">17</a></td>
<td><a href="#">18</a></td>
<td><a href="#">19</a></td>
</tr>
<tr>
<td class="sun"><a href="#">20</a></td>
<td><a href="#">21</a></td>
<td><a href="#">22</a></td>
<td><a href="#">23</a></td>
<td><a href="#">24</a></td>
<td><a href="#">25</a></td>
<td><a href="#">26</a></td>
</tr>
<tr>
<td class="sun"><a href="#">27</a></td>
<td><a href="#">28</a></td>
<td><a href="#">29</a></td>
<td><a href="#">30</a></td>
<td><a href="#">31</a></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="content">
<div class="boardHeader2">
<h3>검색결과</h3>
<span class="info">
<q>&quot;공감&quot;</q> search result : total <strong>23</strong>
</span>
</div>
<table cellspacing="0" summary="게시물 목록" class="boardList">
<thead>
<tr height="2">
<th scope="col" class="title" colspan="2"></th>
<th scope="col" class="recommend"></th>
<th scope="col" class="date"></th>
</tr>
<tr>
<th scope="col" class="title" colspan="2"><img src="../../img/txt_title.gif" /></th>
<th scope="col" class="recommend"><a href="#"><img src="../../img/txt_reply.gif" /></a></th>
<th scope="col" class="date"><img src="../../img/txt_date.gif" /></th>
</tr>
</thead>
<tbody>
<tr>
<td class="num">15</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">14</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">13</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">12</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">11</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">10</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">9</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">8</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">7</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">6</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">5</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">4</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">3</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">2</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">1</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.01.01</td>
</tr>
</tbody>
</table>
<div class="pageNavigation">
<a href="#" class="goToFirst"><img src="../../img/icon_gofirst.gif" alt="첫페이지" width="7" height="5" /></a>
<a href="#">11</a>
<span class="current">12</span>
<a href="#">13</a>
<a href="#">14</a>
<a href="#">15</a>
<a href="#">16</a>
<a href="#">17</a>
<a href="#">18</a>
<a href="#">19</a>
<a href="#">20</a>
<a href="#" class="goToLast"><img src="../../img/icon_golast.gif" alt="끝페이지" width="7" height="5" /></a>
</div>
<div class="buttonRight">
<a href="#" class="buttonTypeA"><img src="../../img/btn_write.gif" /></a>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 B

View file

@ -0,0 +1,386 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="index" href="/" />
<link rel="prev" href="/perv" />
<link rel="next" href="/next" />
<title>제로보드 팀 블로그 &gt; blog</title>
<style type="text/css">
<!--
@import url("../../css/default.css");
@import url("../../css/layout.css");
@import url("../../css/module.css");
-->
</style>
<script type="text/javascript" src="../../js/default.js"></script>
</head>
<body id="blog">
<div id="bodyWrap">
<div id="login_menu">
<div class="login">
<a href="#"><img src="../../img/btn4_logout.gif" /></a>
<a href="#"><img src="../../img/btn4_rss.gif" /></a>
</div>
<ul class="member">
<li><a href="#"><img src="../../img/txt_message.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_friend.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_my.gif" /></a></li>
<li><a href="#"><img src="../../img/txt_admin.gif" /></a></li>
</ul>
</div>
<div id="header">
<h1><a href="#">#addcozy</a></h1>
<p id="tagLine">제로보드를 만드는 사람들의 이야기...</p>
<ul id="globalNavigation">
<li class="no_bg"><a href="#">prologe</a></li>
<li class="on"><a href="#">blog</a></li>
<li><a href="#">guest</a></li>
</ul>
</div>
<div id="contentBody">
<div id="columnLeft">
<div id="profile" class="boxTypeA">
<img src="../../img/@profile.png" alt="My Profile Image" width="153" height="190" class="iePngFix profile" />
<dl id="hello">
<dt><a href="#"><strong>코지</strong> (addcozy)</a></dt>
<dd>안녕하세요~ 코지예요.</dd>
</dl>
<ul id="admin">
<li class="write"><a href="#">Write</a></li>
<li class="setup"><a href="#">Admin</a></li>
</ul>
</div>
<div id="category" class="boxTypeB">
<div class="header">
<h2>category</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="카테고리 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('categoryList');" /></span>
</div>
<ul id="categoryList">
<li><a href="#">Depth 1-1</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-2</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">Depth 1-3</a>
<ul>
<li><a href="#">Depth 2-1</a></li>
<li><a href="#">Depth 2-2</a>
<ul>
<li><a href="#">Depth 3-1</a></li>
<li><a href="#">Depth 3-2</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div id="tag" class="boxTypeB">
<div class="header">
<h2>tags</h2>
</div>
<ul class="tagList">
<li><a href="#">어리석은</a>,</li>
<li class="typeC"><a href="#">음악</a>,</li>
<li class="typeB"><a href="#">연예시대</a>,</li>
<li class="typeA"><a href="#">친구</a>,</li>
<li><a href="#">겨울바다</a>,</li>
<li class="typeC"><a href="#">딸기</a>,</li>
<li><a href="#">상큼한것</a>,</li>
<li><a href="#">수영장</a>,</li>
<li class="typeC"><a href="#">던킨도너츠</a>,</li>
<li><a href="#">추억</a>,</li>
<li class="typeB"><a href="#">빨간자전거</a>,</li>
<li><a href="#">여행</a>,</li>
<li><a href="#">월드타운</a>,</li>
<li class="typeC"><a href="#">유럽여행</a>,</li>
<li class="typeA"><a href="#">프라하</a></li>
</ul>
<div class="tag_sort">
<a href="#" class="showAll">all</a><a href="#" class="showAll">recent</a><a href="#" class="showAll no_bg">popular</a>
</div>
</div>
<div id="neighbor" class="boxTypeB">
<div class="header">
<h2>neighbor</h2>
<span class="toggleMask"><img src="../../img/icon_arrow_toggle.gif" alt="이웃 접어두기/펼치기" width="9" height="9" class="showHide" onclick="hideShow('neighborList')" /></span>
</div>
<ul id="neighborList">
<li><a href="#neighborList1" onclick="showHide('neighborList1'); return false;">주변.</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList1">
<li><a href="#">디자인기능UP 1..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList2" onclick="showHide('neighborList2'); return false;">디자인.수집</a><img src="../../img/iconSecret.gif" alt="비공개" width="7" height="10" />
<ul id="neighborList2">
<li><a href="#">디자인기능UP 2..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
<li><a href="#neighborList3" onclick="showHide('neighborList3'); return false;">관심.</a>
<ul id="neighborList3">
<li><a href="#">디자인기능UP 3..</a></li>
<li><a href="#">백조의 호수</a></li>
</ul>
</li>
</ul>
</div>
<div id="searchBox">
<form action="" method="post">
<fieldset>
<legend>검색</legend>
<input name="" type="text" class="inputTypeText fl" style="width:102px" />
<span class="fr"><a href="#"><img src="../../img/btn2_search.gif" /></a></span>
</fieldset>
</form>
</div>
<div id="calendar">
<table cellspacing="0" summary="해당 날짜의 포스팅으로 이동 합니다">
<caption>
<p class="fl">2007.<span class="mm">05</span></p>
<p class="fr"><a href="#"><img src="../../img/buttonArrowCalendarLeft.gif" alt="이전달" width="13" height="13" /></a><a href="#"><img src="../../img/buttonArrowCalendarRight.gif" alt="다음달" width="13" height="13" /></a></p>
</caption>
<thead>
<tr>
<th class="sun" scope="col">S</th>
<th scope="col">M</th>
<th scope="col">T</th>
<th scope="col">W</th>
<th scope="col">T</th>
<th scope="col">F</th>
<th scope="col">S</th>
</tr>
</thead>
<tbody>
<tr>
<td class="sun">&nbsp;</td>
<td>&nbsp;</td>
<td><a href="#">1</a></td>
<td><a href="#">2</a></td>
<td class="today"><a href="#">3</a></td>
<td><a href="#">4</a></td>
<td><a href="#">5</a></td>
</tr>
<tr>
<td class="sun"><a href="#">6</a></td>
<td><a href="#">7</a></td>
<td><a href="#">8</a></td>
<td><a href="#">9</a></td>
<td><a href="#">10</a></td>
<td><a href="#">11</a></td>
<td><a href="#">12</a></td>
</tr>
<tr>
<td class="sun"><a href="#">13</a></td>
<td class="posted"><a href="#">14</a></td>
<td><a href="#">15</a></td>
<td><a href="#">16</a></td>
<td><a href="#">17</a></td>
<td><a href="#">18</a></td>
<td><a href="#">19</a></td>
</tr>
<tr>
<td class="sun"><a href="#">20</a></td>
<td><a href="#">21</a></td>
<td><a href="#">22</a></td>
<td><a href="#">23</a></td>
<td><a href="#">24</a></td>
<td><a href="#">25</a></td>
<td><a href="#">26</a></td>
</tr>
<tr>
<td class="sun"><a href="#">27</a></td>
<td><a href="#">28</a></td>
<td><a href="#">29</a></td>
<td><a href="#">30</a></td>
<td><a href="#">31</a></td>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</div>
</div>
<div id="content">
<div class="boardHeader2">
<h3>검색결과</h3>
<span class="info">
<q>&quot;공감&quot;</q> search result : total <strong>23</strong>
</span>
</div>
<table cellspacing="0" summary="게시물 목록" class="boardList">
<thead>
<tr height="2">
<th scope="col" class="title" colspan="2"></th>
<th scope="col" class="recommend"></th>
<th scope="col" class="date"></th>
</tr>
<tr>
<th scope="col" class="title" colspan="2"><img src="../../img/txt_title.gif" /></th>
<th scope="col" class="recommend"><a href="#"><img src="../../img/txt_reply.gif" /></a></th>
<th scope="col" class="date"><img src="../../img/txt_date.gif" /></th>
</tr>
</thead>
<tbody>
<tr>
<td class="num">15</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">14</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">13</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">12</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">11</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">10</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">9</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">8</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">7</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">6</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">5</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">4</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">3</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.12.12</td>
</tr>
<tr>
<td class="num">2</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">123456</td>
<td class="date">2007.01.01</td>
</tr>
<tr>
<td class="num">1</td>
<td class="title">
<a href="#">일이삼사오륙칠팔구십 일이삼사오륙칠팔구십</a>
</td>
<td class="recommend">&nbsp;</td>
<td class="date">2007.01.01</td>
</tr>
</tbody>
</table>
<div class="pageNavigation">
<a href="#" class="goToFirst"><img src="../../img/icon_gofirst.gif" alt="첫페이지" width="7" height="5" /></a>
<a href="#">11</a>
<span class="current">12</span>
<a href="#">13</a>
<a href="#">14</a>
<a href="#">15</a>
<a href="#">16</a>
<a href="#">17</a>
<a href="#">18</a>
<a href="#">19</a>
<a href="#">20</a>
<a href="#" class="goToLast"><img src="../../img/icon_golast.gif" alt="끝페이지" width="7" height="5" /></a>
</div>
<div class="buttonRight">
<a href="#" class="buttonTypeA"><img src="../../img/btn_write.gif" /></a>
</div>
</div>
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 B

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1 @@
div.commentBox .header h2 { font-size:1em; color:#1187d8;}

View file

@ -0,0 +1 @@
div.commentBox .header h2 { font-size:1em; color:#9ab09f;}

View file

@ -0,0 +1,7 @@
div.commentBox { padding-bottom:1em;}
div.commentBox .header { padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; }
*:first-child+html div.commentBox .header { height:20px; color:#ef2121;}
div.commentBox ul { padding:.5em; overflow:hidden;}
div.commentBox ul li { color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
div.commentBox ul li a { color:#a4a4a4;}

View file

@ -0,0 +1 @@
div.commentBox .header h2 { font-size:1em; color:#8dc63f;}

View file

@ -0,0 +1 @@
div.commentBox .header h2 { font-size:1em; color:#f70795;}

View file

@ -0,0 +1 @@
div.commentBox .header h2 { font-size:1em; color:#ef2121;}

View file

@ -0,0 +1,29 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
<!--%import("css/red.css")-->
<!--@end-->
<div class="commentBox">
<div class="header">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>newest comments</h2>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->comment_list as $val)-->
<li><a href="{getUrl('','document_srl',$val->document_srl)}#comment_{$val->comment_srl}">{htmlspecialchars(cut_str(strip_tags($val->content),20,'...'))}</a></li>
<!--@end-->
</ul>
</div>

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1 @@
div.documentBox .header h2 { font-size:1em; color:#1187d8;}

View file

@ -0,0 +1 @@
div.documentBox .header h2 { font-size:1em; color:#9ab09f;}

View file

@ -0,0 +1,7 @@
div.documentBox { padding-bottom:1em;}
div.documentBox .header { padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; }
*:first-child+html div.documentBox .header { height:20px; color:#ef2121;}
div.documentBox ul { padding:.5em; overflow:hidden;}
div.documentBox ul li { color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
div.documentBox ul li a { color:#a4a4a4;}

View file

@ -0,0 +1 @@
div.documentBox .header h2 { font-size:1em; color:#8dc63f;}

View file

@ -0,0 +1 @@
div.documentBox .header h2 { font-size:1em; color:#f70795;}

View file

@ -0,0 +1 @@
div.documentBox .header h2 { font-size:1em; color:#ef2121;}

View file

@ -0,0 +1,29 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
<!--%import("css/red.css")-->
<!--@end-->
<div class="documentBox">
<div class="header">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>newest documents</h2>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->document_list as $oDocument)-->
<li><a href="{$oDocument->getPermanentUrl()}#{$oDocument->getCommentCount()}">{$oDocument->getTitleText($widget_info->subject_cut_size)}</a></li>
<!--@end-->
</ul>
</div>

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1 @@
div.trackbackBox .header h2 { font-size:1em; color:#1187d8;}

View file

@ -0,0 +1 @@
div.trackbackBox .header h2 { font-size:1em; color:#9ab09f;}

View file

@ -0,0 +1,7 @@
div.trackbackBox { padding-bottom:1em;}
div.trackbackBox .header { padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; }
*:first-child+html div.trackbackBox .header { height:20px; color:#ef2121;}
div.trackbackBox ul { padding:.5em; overflow:hidden;}
div.trackbackBox ul li { color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
div.trackbackBox ul li a { color:#a4a4a4;}

View file

@ -0,0 +1 @@
div.trackbackBox .header h2 { font-size:1em; color:#8dc63f;}

View file

@ -0,0 +1 @@
div.trackbackBox .header h2 { font-size:1em; color:#f70795;}

View file

@ -0,0 +1 @@
div.trackbackBox .header h2 { font-size:1em; color:#ef2121;}

View file

@ -0,0 +1,30 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
<!--%import("css/red.css")-->
<!--@end-->
<div class="trackbackBox">
<div class="header">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>newest trackbacks</h2>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->trackback_list as $val)-->
<li><a href="{getUrl('','document_srl',$val->document_srl)}#trackback_{$val->trackback_srl}">{cut_str($val->title,20,'...')}</a></li>
<!--@end-->
</ul>
</div>

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1 @@
div.tagBox .header h2 { font-size:1em; color:#1187d8;}

View file

@ -0,0 +1 @@
div.tagBox .header h2 { font-size:1em; color:#9ab09f;}

View file

@ -0,0 +1,11 @@
div.tagBox { padding-bottom:1em;}
div.tagBox .header { padding:7px 0 0 12px; height:21px; _height:20px; background:#f5f5f5; }
*:first-child+html div.tagBox .header { height:20px; color:#ef2121;}
div.tagBox ul { padding:.5em; overflow:hidden;}
div.tagBox ul li { display:inline; color:#a4a4a4; margin-right:.1em; line-height:1.5em;}
div.tagBox ul li a { color:#a4a4a4;}
div.tagBox ul li.typeA a { color:#717171; font-weight:bold;}
div.tagBox ul li.typeB a { color:#3d3d3d;}
div.tagBox ul li.typeC a { font-weight:bold;}
div.tagBox .tag_sort { width:100%; border-top:1px dashed #ababab; border-bottom:1px dashed #ababab; text-align:center; overflow:hidden;}

View file

@ -0,0 +1 @@
div.tagBox .header h2 { font-size:1em; color:#8dc63f;}

View file

@ -0,0 +1 @@
div.tagBox .header h2 { font-size:1em; color:#f70795;}

View file

@ -0,0 +1 @@
div.tagBox .header h2 { font-size:1em; color:#ef2121;}

View file

@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<skin>
<title xml:lang="ko">cozy simple</title>
<maker email_address="zero@zeroboard.com" link="http://www.zeroboard.com" date="2007. 2. 28">
<name xml:lang="ko">제로</name>
<description xml:lang="ko">
cozy simple 위젯입니다.
디자인 : 서기정 (http://blog.naver.com/addcozy)
HTML/CSS : 소지훈
</description>
</maker>
<colorset>
<color name="red">
<title xml:lang="ko">빨간색</title>
</color>
<color name="green">
<title xml:lang="ko">초록색</title>
</color>
<color name="blue">
<title xml:lang="ko">파란색</title>
</color>
<color name="pink">
<title xml:lang="ko">분홍색</title>
</color>
<color name="bluish_green">
<title xml:lang="ko">청록색</title>
</color>
</colorset>
</skin>

View file

@ -0,0 +1,44 @@
<!-- 설정된 컬러셋의 종류에 따라서 css파일을 import 합니다 -->
<!--%import("css/common.css")-->
<!--@if($colorset=="bluish_green")-->
<!--%import("css/bluish_green.css")-->
<!--@elseif($colorset=="green")-->
<!--%import("css/green.css")-->
<!--@elseif($colorset=="pink")-->
<!--%import("css/pink.css")-->
<!--@elseif($colorset=="blue")-->
<!--%import("css/blue.css")-->
<!--@else-->
<!--%import("css/red.css")-->
<!--@end-->
<div class="tagBox">
<div class="header">
<!--@if($widget_info->title)-->
<h2>{$widget_info->title}</h2>
<!--@else-->
<h2>tags</h2>
<!--@end-->
</div>
<ul>
<!--@foreach($widget_info->tag_list as $val)-->
<!--@if($val->count>10)-->
{@ $tag_class = "typeA" }
<!--@elseif($val->count>5)-->
{@ $tag_class = "typeB" }
<!--@elseif($val->count>3)-->
{@ $tag_class = "typeC" }
<!--@else-->
{@ $tag_class = "" }
<!--@end-->
<li <!--@if($tag_class)-->class="{$tag_class}"<!--@end--> >
<!--@if($layout_info->mid)-->
<a href="{getUrl('','mid',$layout_info->mid,'search_target','tag','search_keyword',urlencode($val->tag))}">{cut_str($val->tag,15,'...')}</a>
<!--@else-->
<a href="{getUrl('','mid',$mid,'search_target','tag','search_keyword',urlencode($val->tag))}">{cut_str($val->tag,15,'...')}</a>
<!--@end-->
</li>
<!--@end-->
</ul>
</div>