source: branches/version-2_13-dev/data/Smarty/templates/default/site_frame.tpl @ 22959

Revision 22959, 4.2 KB checked in by Seasoft, 11 years ago (diff)

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0)

  • ソースコードのインデントを適切にする
  • 出力 HTML の冗長なインデントを減らす (strip)
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!--{printXMLDeclaration}--><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<!--{*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2013 LOCKON CO.,LTD. All Rights Reserved.
6 *
7 * http://www.lockon.co.jp/
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22 *}-->
23
24<html xmlns="http://www.w3.org/1999/xhtml" lang="ja" xml:lang="ja">
25<head>
26<meta http-equiv="Content-Type" content="text/html; charset=<!--{$smarty.const.CHAR_CODE}-->" />
27<title><!--{$arrSiteInfo.shop_name|h}--><!--{if $tpl_subtitle|strlen >= 1}--> / <!--{$tpl_subtitle|h}--><!--{elseif $tpl_title|strlen >= 1}--> / <!--{$tpl_title|h}--><!--{/if}--></title>
28<meta http-equiv="Content-Script-Type" content="text/javascript" />
29<meta http-equiv="Content-Style-Type" content="text/css" />
30<!--{if $arrPageLayout.author|strlen >= 1}-->
31    <meta name="author" content="<!--{$arrPageLayout.author|h}-->" />
32<!--{/if}-->
33<!--{if $arrPageLayout.description|strlen >= 1}-->
34    <meta name="description" content="<!--{$arrPageLayout.description|h}-->" />
35<!--{/if}-->
36<!--{if $arrPageLayout.keyword|strlen >= 1}-->
37    <meta name="keywords" content="<!--{$arrPageLayout.keyword|h}-->" />
38<!--{/if}-->
39<!--{if $arrPageLayout.meta_robots|strlen >= 1}-->
40    <meta name="robots" content="<!--{$arrPageLayout.meta_robots|h}-->" />
41<!--{/if}-->
42<link rel="shortcut icon" href="<!--{$TPL_URLPATH}-->img/common/favicon.ico" />
43<link rel="icon" type="image/vnd.microsoft.icon" href="<!--{$TPL_URLPATH}-->img/common/favicon.ico" />
44<link rel="stylesheet" href="<!--{$TPL_URLPATH}-->css/import.css" type="text/css" media="all" />
45<link rel="alternate" type="application/rss+xml" title="RSS" href="<!--{$smarty.const.HTTP_URL}-->rss/<!--{$smarty.const.DIR_INDEX_PATH}-->" />
46<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/css.js"></script>
47<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/navi.js"></script>
48<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/win_op.js"></script>
49<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/site.js"></script>
50<script type="text/javascript" src="<!--{$smarty.const.ROOT_URLPATH}-->js/jquery-1.4.2.min.js"></script>
51<!--{if $tpl_page_class_name === "LC_Page_Abouts"}-->
52    <!--{if ($smarty.server.HTTPS != "") && ($smarty.server.HTTPS != "off")}-->
53        <script type="text/javascript" src="https://maps-api-ssl.google.com/maps/api/js?sensor=false"></script>
54    <!--{else}-->
55        <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
56    <!--{/if}-->
57<!--{/if}-->
58
59<script type="text/javascript">//<![CDATA[
60    <!--{$tpl_javascript}-->
61    $(function(){
62        <!--{$tpl_onload}-->
63    });
64//]]></script>
65
66<!--{strip}-->
67    <!--{* ▼Head COLUMN*}-->
68    <!--{if $arrPageLayout.HeadNavi|@count > 0}-->
69        <!--{* ▼上ナビ *}-->
70        <!--{foreach key=HeadNaviKey item=HeadNaviItem from=$arrPageLayout.HeadNavi}-->
71            <!--{* ▼<!--{$HeadNaviItem.bloc_name}--> *}-->
72            <!--{if $HeadNaviItem.php_path != ""}-->
73                <!--{include_php file=$HeadNaviItem.php_path}-->
74            <!--{else}-->
75                <!--{include file=$HeadNaviItem.tpl_path}-->
76            <!--{/if}-->
77            <!--{* ▲<!--{$HeadNaviItem.bloc_name}--> *}-->
78        <!--{/foreach}-->
79        <!--{* ▲上ナビ *}-->
80    <!--{/if}-->
81    <!--{* ▲Head COLUMN*}-->
82<!--{/strip}-->
83</head>
84
85<!-- ▼BODY部 スタート -->
86<!--{include file='./site_main.tpl'}-->
87<!-- ▲BODY部 エンド -->
88
89</html>
Note: See TracBrowser for help on using the repository browser.