mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
issue 87 add site admin layout
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8807 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
bc70424fba
commit
ee1a615008
4 changed files with 55 additions and 3 deletions
|
|
@ -17,7 +17,7 @@
|
|||
<action name="getAdminFTPList" type="model" standalone="true" />
|
||||
</actions>
|
||||
<menus>
|
||||
<menu name="adminConfiguration">
|
||||
<menu name="adminConfiguration" type="all">
|
||||
<title xml:lang="en">General</title>
|
||||
<title xml:lang="ko">일반</title>
|
||||
<title xml:lang="zh-CN">General</title>
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
<title xml:lang="mn">General</title>
|
||||
<title xml:lang="tr">General</title>
|
||||
</menu>
|
||||
<menu name="adminMenuSetup">
|
||||
<menu name="adminMenuSetup" type="all">
|
||||
<title xml:lang="en">Admin Menu Setup</title>
|
||||
<title xml:lang="ko">관리자 메뉴 설정</title>
|
||||
<title xml:lang="zh-CN">Admin Menu Setup</title>
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
<title xml:lang="mn">Admin Menu Setup</title>
|
||||
<title xml:lang="tr">Admin Menu Setup</title>
|
||||
</menu>
|
||||
<menu name="theme">
|
||||
<menu name="theme" type="site">
|
||||
<title xml:lang="en">Theme</title>
|
||||
<title xml:lang="ko">테마</title>
|
||||
<title xml:lang="zh-CN">Theme</title>
|
||||
|
|
|
|||
7
modules/admin/tpl/_stFooter.html
Normal file
7
modules/admin/tpl/_stFooter.html
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
</div>
|
||||
<div class="footer">
|
||||
<p>Powered by <strong><a href="http://xpressengine.org/">XE</a></strong>.</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
39
modules/admin/tpl/_stHeader.html
Normal file
39
modules/admin/tpl/_stHeader.html
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
<div class="xe stAdmin">
|
||||
<p class="skipNav"><a href="#content">Skip Navigation</a></p>
|
||||
<div class="header">
|
||||
<h1><a href="{getUrl('', 'module', 'admin', 'vid', $vid)}"><img src="img/xe.h1.png" width="33" height="32" alt="XE" /> Site Admin <span class="url">- http://site.xpressengine.com/</span></a></h1>
|
||||
<div class="siteTool">
|
||||
<a href="#siteMapList" class="i tgSimple">Site Map</a>
|
||||
<div class="tgContent" id="siteMapList">
|
||||
</div>
|
||||
</div>
|
||||
<div class="account">
|
||||
<ul>
|
||||
<li cond="$logged_info->is_admin=='Y'"><a href="#">Super Admin</a></li> <!-- 슈퍼 관리자만 표시 -->
|
||||
<li><a href="#">{$logged_info->nick_name}</a></li>
|
||||
<li><a href="{getUrl('module', 'admin', 'act', 'procAdminLogout')}">Log-out</a></li>
|
||||
<li><a href="#language" class="tgAnchor" data-effect="slide" data-duration="100">Language</a>
|
||||
<ul class="tgContent" id="language">
|
||||
<li loop="$lang_supported=>$key,$val"><a href="#" onclick="doChangeLangType('{$key}'); return false;">{$val}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="gnb jx">
|
||||
<ul>
|
||||
<!--@foreach($gnbUrlList AS $key=>$value)-->
|
||||
<li <!--@if($parentSrl == $key)-->class="activeOn"<!--@end-->><a href="{html_entity_decode($value['href'])}">{$value['text']}</a>
|
||||
<!--@if(count($gnbUrlList[$key]['list']) > 0)-->
|
||||
<ul>
|
||||
<!--@foreach($gnbUrlList[$key]['list'] AS $key2=>$value2)-->
|
||||
<li><a href="{html_entity_decode($value2['href'])}">{$value2['text']}</a></li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<!--@end-->
|
||||
</li>
|
||||
<!--@end-->
|
||||
</ul>
|
||||
<a href="#" class="setting">GNB Setting</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="body">
|
||||
6
modules/admin/tpl/site_admin_layout.html
Normal file
6
modules/admin/tpl/site_admin_layout.html
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<!--#include("./_stHeader.html")-->
|
||||
<div class="content" id="content">
|
||||
{$content}
|
||||
</div>
|
||||
<!--#include("./_spLnb.content.html")-->
|
||||
<!--#include("./_spFooter.html")-->
|
||||
Loading…
Add table
Add a link
Reference in a new issue