mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-27 23:29:57 +09:00
merged 1.5.0 branch into 1.5.0-DB
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0-DB@8547 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4973c78fbc
commit
01d0925dd5
145 changed files with 990 additions and 31147 deletions
19
layouts/user_layout/conf/info.xml
Normal file
19
layouts/user_layout/conf/info.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<layout version="0.2">
|
||||
<title xml:lang="ko">사용자 정의 레이아웃</title>
|
||||
<title xml:lang="en">User defined layout</title>
|
||||
<title xml:lang="jp">ユーザー定義のレイアウト</title>
|
||||
<description xml:lang="ko">사용자 정의 레이아웃에 관한 설명 입니다.</description>
|
||||
<description xml:lang="en">Description for user defined layout.</description>
|
||||
<description xml:lang="jp">ユーザー定義のレイアウトについての説明です。</description>
|
||||
<version>1.0</version>
|
||||
<date>2010-12-24</date>
|
||||
<author email_address="user@user.com" link="http://user-define.com/">
|
||||
<name xml:lang="ko">User Name</name>
|
||||
</author>
|
||||
<menus>
|
||||
<menu name="main_menu" maxdepth="2" default="true">
|
||||
<title xml:lang="ko">메뉴</title>
|
||||
</menu>
|
||||
</menus>
|
||||
</layout>
|
||||
47
layouts/user_layout/layout.html
Normal file
47
layouts/user_layout/layout.html
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
<load target="user_layout.css" />
|
||||
<div class="user_layout">
|
||||
<div class="header">
|
||||
<h1>Site Logo</h1>
|
||||
<form action="{getUrl()}" method="get" class="search">
|
||||
<input type="hidden" name="vid" value="{$vid}" />
|
||||
<input type="hidden" name="mid" value="{$mid}" />
|
||||
<input type="hidden" name="act" value="IS" />
|
||||
<input type="text" name="is_keyword" value="{$is_keyword}" title="{$lang->cmd_search}" />
|
||||
<input type="submit" value="{$lang->cmd_search}" />
|
||||
</form>
|
||||
<hr />
|
||||
<div class="gnb">
|
||||
.gnb
|
||||
<ul>
|
||||
<li loop="$main_menu->list=>$key1,$val1" class="active"|cond="$val1['selected']"><a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a>
|
||||
<ul cond="$val1['list']">
|
||||
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="body">
|
||||
<div class="lnb">
|
||||
<div class="account">
|
||||
<img widget="login_info" skin="xe_official" />
|
||||
</div>
|
||||
<hr />
|
||||
.lnb
|
||||
<h2 loop="$main_menu->list=>$key1,$val1" cond="$val1['selected']"><a href="{$val1['href']}" target="_blank"|cond="$val1['open_window']=='Y'">{$val1['link']}</a></h2>
|
||||
<ul loop="$main_menu->list=>$key1,$val1" cond="$val1['selected'] && $val1['list']">
|
||||
<li loop="$val1['list']=>$key2,$val2" class="active"|cond="$val2['selected']"><a href="{$val2['href']}" target="_blank"|cond="$val2['open_window']=='Y'">{$val2['link']}</a>
|
||||
<ul cond="$val2['list']">
|
||||
<li loop="$val2['list']=>$key3,$val3" class="active"|cond="$val3['selected']"><a href="{$val3['href']}" target="_blank"|cond="$val3['open_window']=='Y'">{$val3['link']}</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="content">.content{$content}</div>
|
||||
</div>
|
||||
<hr />
|
||||
<div class="footer">.footer</div>
|
||||
</div>
|
||||
15
layouts/user_layout/user_layout.css
Normal file
15
layouts/user_layout/user_layout.css
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
@charset "utf-8";
|
||||
/* Layout */
|
||||
hr{ display:none;}
|
||||
form, fieldset{ border:0; margin:0; padding:0;}
|
||||
.user_layout{ width:960px; margin:0 auto;}
|
||||
.header{ zoom:1; background:#ddd;}
|
||||
.header:after{ content:""; display:block; clear:both;}
|
||||
.header .search{ float:right;}
|
||||
.gnb{ float:left;}
|
||||
.body{ margin:20px 0; zoom:1; background:#eee;}
|
||||
.body:after{ content:""; display:block; clear:both;}
|
||||
.lnb{ float:left; width:200px; background:#ddd;}
|
||||
.account{}
|
||||
.content{ float:right; width:740px; background:#ddd;}
|
||||
.footer{ background:#ddd;}
|
||||
5
layouts/user_layout/user_layout.js
Normal file
5
layouts/user_layout/user_layout.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
// <![CDATA[
|
||||
jQuery(function($){
|
||||
//
|
||||
});
|
||||
// ]]>
|
||||
Loading…
Add table
Add a link
Reference in a new issue