내역을 확인할 수 있도록 추가

This commit is contained in:
BJRambo 2016-02-26 13:10:25 +09:00
parent 74fcee987e
commit 9a60af1871
7 changed files with 69 additions and 2 deletions

View file

@ -263,6 +263,16 @@
right:0;
border-radius: 0 2px 2px 0;
}
.update-log {
width:100%;
border-bottom:1px solid #dbdbdb;
margin: 5px auto 5px auto;
padding:5px;
}
/* Board Write */
/* write_form.html */
@ -463,6 +473,9 @@
white-space: nowrap;
color : #666;
}
.update-log .read_header .meta {
border-bottom:0;
}
.read_header .meta > span { margin-left: 8px ;}
.read_header .meta > span:first-child {margin-left:0;}
.read_header .meta:after {

View file

@ -0,0 +1,23 @@
<include target="_header.html" />
<div class="update-log" loop="$updatelog=>$val">
<div class="board_read" >
<!-- READ HEADER -->
<div class="read_header">
<h1>
<a href="{getUrl('category',$val->category_srl, 'document_srl', '')}" class="category" cond="$module_info->use_category=='Y' && $val->category_srl">{$category_list[$val->category_srl]->title}</a>
<a>{$val->title}</a>
</h1>
<p class="meta">
<span class="time">
<i class="xi-time"></i> {zdate($val->regdate,'Y.m.d H:i:s')}
</span>
</p>
</div>
<!-- READ BODY -->
<div class="read_body">
{$val->content}
</div>
<!-- /READ BODY -->
</div>
</div>