mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@2327 201d5d3c-b55e-5fd7-737f-ddc643e51545
96 lines
3.8 KiB
HTML
96 lines
3.8 KiB
HTML
<!-- 글 내용 보여주기 -->
|
|
<div class="content_box">
|
|
|
|
<div class="title" style="clear:right;height:25px;">
|
|
<div style="font-weight:bold;font-size:18px;float:left;">
|
|
<!--@if($oDocument->get('category_srl'))-->
|
|
[{$category_list[$oDocument->get('category_srl')]->title}]
|
|
<!--@end-->
|
|
|
|
{$oDocument->getTitleText()}
|
|
</div>
|
|
</div>
|
|
|
|
<div style="clear:right;height:20px;">
|
|
<div class="date" style="float:left;">
|
|
<strong>{$oDocument->getRegdate('Y.m.d')}</strong> {$oDocument->getRegdate('H:i:s')}
|
|
<!--@if($module_info->display_writer == "on")-->
|
|
<span class="member_{$oDocument->get('member_srl')}">{$oDocument->getNickName()}</span>
|
|
<!--@end-->
|
|
</div>
|
|
<div style="float:right;">
|
|
<!--@if($oDocument->isEditable())-->
|
|
<a href="{getUrl('act','dispBlogWrite','document_srl',$oDocument->document_srl)}">[{$lang->cmd_modify}]</a>
|
|
<a href="{getUrl('act','dispBlogDelete','document_srl',$oDocument->document_srl)}">[{$lang->cmd_delete}]</a>
|
|
<!--@end-->
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div style="overflow:hidden;width:660px;margin:10px 0px 10px 0px;padding:5px 0px 5px 0px;border-top:1px solid #EEEEEE;border-bottom:1px solid #EEEEEE;" class="content">{$oDocument->getContent()}</div>
|
|
|
|
<div style="margin:10px 0px 10px 0px">
|
|
{$lang->document_url} : {$oDocument->getPermanentUrl()}
|
|
</div>
|
|
|
|
<div style="clear:both;height:20px;margin:0px 0px 10px 0px">
|
|
{@ $tag_list = $oDocument->get('tag_list') }
|
|
<!--@if(count($tag_list))-->
|
|
<div style="color:#888888;float:left;">
|
|
<!--@for($i=0;$i<count($tag_list);$i++)-->
|
|
{@ $tag = $tag_list[$i]; }
|
|
{$lang->tag} :
|
|
<a href="{getUrl('search_target','tag','search_keyword',urlencode($val),'document_srl','')}" rel="tag">{htmlspecialchars($val)}</a>
|
|
<!--@end-->
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<!--@if($oDocument->allowTrackback())-->
|
|
<div style="color:#888888;float:right;">
|
|
{$lang->trackback_url} : {$oDocument->getTrackbackUrl()}
|
|
</div>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!--@if($oDocument->hasUploadedFiles())-->
|
|
<div style="border:1px solid #DDDDDD;padding:10px;margin-bottom:10px;">
|
|
<div>{$lang->uploaded_file}</div>
|
|
<div>
|
|
{@ $uploaded_list = $oDocument->getUploadedFiles() }
|
|
<!--@foreach($uploaded_list as $key => $file)-->
|
|
<span><a href="{$file->download_url}">{$file->source_filename} ({FileHandler::filesize($file->file_size)})</a> ({number_format($file->download_count)})</span>
|
|
<!--@end-->
|
|
</div>
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<a href="{getUrl('','act','dispDocumentPrint','document_srl',$oDocument->document_srl)}" onclick="winopen(this.href);return false;">{$lang->cmd_print}</a>
|
|
</div>
|
|
|
|
<!-- 댓글/ 엮인글 정보 출력 -->
|
|
<div>
|
|
<!--@if($grant->write_comment && $oDocument->allowComment()) -->
|
|
<a href="#comment_top_{$oDocument->document_srl}">{$lang->comment} : {$oDocument->getCommentCount()}</a>,
|
|
<!--@end-->
|
|
|
|
<!--@if($oDocument->allowTrackback())-->
|
|
<a href="#trackback_{$oDocument->document_srl}">{$lang->trackback} : {$oDocument->getTrackbackCount()}</a>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<!-- 엮인글 목록 -->
|
|
<a name="trackback_{$oDocument->document_srl}"></a>
|
|
|
|
<!-- 엮인글 파일 include -->
|
|
<!--@if($oDocument->allowTrackback())-->
|
|
<!--#include("./trackback.html")-->
|
|
<!--@end-->
|
|
|
|
<!-- 댓글 정보 출력 -->
|
|
<a name="comment_top_{$oDocument->document_srl}"></a>
|
|
|
|
<!-- 댓글 파일 include -->
|
|
<!--@if($grant->write_comment && $oDocument->allowComment())-->
|
|
{@ $document_srl = $oDocument->document_srl; }
|
|
<!--#include("./comment.html")-->
|
|
<!--@end-->
|