source: branches/version-2/data/Smarty/templates/default/site_main.tpl @ 17104

Revision 17104, 4.6 KB checked in by satou, 16 years ago (diff)

【管理画面>デザイン管理>レイアウト編集】左右ナビ位置の変更が反映されない不具合を改修。

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/html; charset=UTF-8
Line 
1<!--{*
2 * This file is part of EC-CUBE
3 *
4 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
5 *
6 * http://www.lockon.co.jp/
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
21 *}-->
22<body onload="preLoadImg('<!--{$TPL_DIR}-->'); <!--{$tpl_onload}-->">
23<!--{* A8タグ表示用 *}-->
24<!--{if "sfPrintA8Tag"|function_exists === TRUE}-->
25<!--{include file=`$smarty.const.MODULE_PATH`mdl_a8/print_a8_tag.tpl}-->
26<!--{/if}-->
27
28<!--{$GLOBAL_ERR}-->
29<noscript>
30  <p>JavaScript を有効にしてご利用下さい.</p>
31</noscript>
32
33<a name="top" id="top"></a>
34
35<!--{* ▼HEADER *}-->
36<!--{if $arrPageLayout.header_chk != 2}-->
37<!--{include file= $header_tpl}-->
38<!--{/if}-->
39<!--{* ▲HEADER *}-->
40
41<!--{* ▼CONTENTS *}-->
42<div id="container">
43
44  <!--{* ▼LEFT COLUMN *}-->
45  <!--{if $arrPageLayout.LeftNavi|@count > 0}-->
46  <div id="leftcolumn">
47    <!--{* ▼左ナビ *}-->
48      <!--{foreach key=LeftNaviKey item=LeftNaviItem from=$arrPageLayout.LeftNavi}-->
49        <!-- ▼<!--{$LeftNaviItem.bloc_name}--> ここから-->
50          <!--{if $LeftNaviItem.php_path != ""}-->
51            <!--{include_php file=$LeftNaviItem.php_path}-->
52          <!--{else}-->
53            <!--{include file=$LeftNaviItem.tpl_path}-->
54          <!--{/if}-->
55        <!-- ▲<!--{$LeftNaviItem.bloc_name}--> ここまで-->
56      <!--{/foreach}-->
57    <!--{* ▲左ナビ *}-->
58  </div>
59  <!--{/if}-->
60  <!--{* ▲LEFT COLUMN *}-->
61
62  <!--{* ▼CENTER COLUMN *}-->
63  <!--{if $tpl_column_num == 3}-->
64  <div id="three_maincolumn">
65  <!--{elseif $tpl_column_num == 2}-->
66  <div id="two_maincolumn">
67  <!--{elseif $tpl_column_num == 1}-->
68  <div id="one_maincolumn">
69  <!--{/if}-->
70    <!--{* ▼メイン上部 *}-->
71    <!--{if $arrPageLayout.MainHead|@count > 0}-->
72      <!--{foreach key=MainHeadKey item=MainHeadItem from=$arrPageLayout.MainHead}-->
73        <!-- ▼<!--{$MainHeadItem.bloc_name}--> ここから-->
74        <!--{if $MainHeadItem.php_path != ""}-->
75          <!--{include_php file=$MainHeadItem.php_path}-->
76        <!--{else}-->
77          <!--{include file=$MainHeadItem.tpl_path}-->
78        <!--{/if}-->
79        <!-- ▲<!--{$MainHeadItem.bloc_name}--> ここまで-->
80      <!--{/foreach}-->
81    <!--{/if}-->
82    <!--{* ▲メイン上部 *}-->
83   
84    <!--{* ▼メイン *}-->
85    <!--{include file=$tpl_mainpage}-->
86    <!--{* ▲メイン *}-->
87   
88    <!--{* ▼メイン下部 *}-->
89    <!--{if $arrPageLayout.MainFoot|@count > 0}-->
90      <!--{foreach key=MainFootKey item=MainFootItem from=$arrPageLayout.MainFoot}-->
91        <!-- ▼<!--{$MainFootItem.bloc_name}--> ここから-->
92        <!--{if $MainFootItem.php_path != ""}-->
93          <!--{include_php file=$MainFootItem.php_path}-->
94        <!--{else}-->
95          <!--{include file=$MainFootItem.tpl_path}-->
96        <!--{/if}-->
97        <!-- ▲<!--{$MainFootItem.bloc_name}--> ここまで-->
98      <!--{/foreach}-->
99    <!--{/if}-->
100    <!--{* ▲メイン下部 *}-->
101  </div>
102  <!--{* ▲CENTER COLUMN *}-->
103
104  <!--{* ▼RIGHT COLUMN *}-->
105  <!--{if $arrPageLayout.RightNavi|@count > 0}-->
106  <div id="rightcolumn">
107    <!--{* ▼右ナビ *}-->
108      <!--{foreach key=RightNaviKey item=RightNaviItem from=$arrPageLayout.RightNavi}-->
109        <!-- ▼<!--{$RightNaviItem.bloc_name}--> ここから-->
110        <!--{if $RightNaviItem.php_path != ""}-->
111          <!--{include_php file=$RightNaviItem.php_path}-->
112        <!--{else}-->
113          <!--{include file=$RightNaviItem.tpl_path}-->
114        <!--{/if}-->
115        <!-- ▲<!--{$RightNaviItem.bloc_name}--> ここまで-->
116      <!--{/foreach}-->
117    <!--{* ▲右ナビ *}-->
118  </div>
119  <!--{/if}-->
120  <!--{* ▲RIGHT COLUMN *}-->
121
122</div>
123<!--{* ▲CONTENTS *}-->
124
125<!--{* ▼FOTTER *}-->
126<!--{if $arrPageLayout.footer_chk != 2}-->
127<!--{include file=$footer_tpl}-->
128<!--{/if}-->
129<!--{* ▲FOTTER *}-->
130
131<!--{* EBiSタグ表示用 *}-->
132<!--{$tpl_mainpage|sfPrintEbisTag}-->
133<!--{* アフィリエイトタグ表示用 *}-->
134<!--{$tpl_conv_page|sfPrintAffTag:$tpl_aff_option}-->
135</body>
Note: See TracBrowser for help on using the repository browser.