mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-17 18:29:55 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1956 201d5d3c-b55e-5fd7-737f-ddc643e51545
53 lines
1.6 KiB
HTML
53 lines
1.6 KiB
HTML
<!--%import("js/guestbook.js")-->
|
|
<!--%import("css/guestbook.css")-->
|
|
{$module_info->header_text}
|
|
|
|
<!-- 스킨의 제목/내용으로 내용 구성 -->
|
|
<!--@if($module_info->title || $module_info->memo)-->
|
|
<div class="titleBox">
|
|
<!--@if($module_info->title)-->
|
|
<div class="title">{$module_info->title}</div>
|
|
<!--@end-->
|
|
|
|
<!--@if($module_info->memo)-->
|
|
<div class="memo">{nl2br($module_info->memo)}</div>
|
|
<!--@end-->
|
|
</div>
|
|
<!--@end-->
|
|
|
|
<!-- 정보 -->
|
|
<div class="info">
|
|
<div class="status">
|
|
<!--@if($total_count)-->
|
|
{$lang->document_count} : {number_format($total_count)},
|
|
{$lang->page_count} : {number_format($page)} / {number_format($total_page)}
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<div class="link">
|
|
<!--@if($rss_url)-->
|
|
<a href="{$rss_url}">rss</a>
|
|
<!--@end-->
|
|
|
|
<!--@if($is_logged)-->
|
|
[
|
|
<a href="{getUrl('act','dispMemberInfo')}">{$lang->cmd_view_member_info}</a> |
|
|
<a href="{getUrl('act','dispMemberLogout')}">{$lang->cmd_logout}</a>
|
|
]
|
|
|
|
<!--@else-->
|
|
[
|
|
<a href="{getUrl('act','dispMemberSignUpForm')}">{$lang->cmd_signup}</a> |
|
|
<a href="{getUrl('act','dispMemberLoginForm')}">{$lang->cmd_login}</a>
|
|
]
|
|
<!--@end-->
|
|
|
|
<!--@if($grant->is_admin)-->
|
|
<a href="{getUrl('act','dispGuestbookAdminGuestbookInfo')}">[{$lang->cmd_setup}]</a>
|
|
<a href="{getUrl('module','admin','act','dispGuestbookAdminGuestbookInfo')}" onclick="winopen(this.href);return false;">[{$lang->cmd_management}]</a>
|
|
<!--@end-->
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
</div>
|
|
|