source: branches/version-2_13_0/data/Smarty/templates/sphone/site_frame.tpl @ 23104

Revision 23104, 4.8 KB checked in by h_yoshimoto, 11 years ago (diff)

#2348 r23077 - r23081 をマージ

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Id
  • Property svn:mime-type set to text/x-smarty-template; charset=UTF-8
Line 
1<!DOCTYPE HTML>
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 lang="ja">
25    <head>
26        <meta charset="UTF-8">
27        <meta http-equiv="Content-Type" content="text/html; charset=<!--{$smarty.const.CHAR_CODE}-->" />
28
29        <title><!--{$arrSiteInfo.shop_name|h}--><!--{if $tpl_subtitle|strlen >= 1}--> / <!--{$tpl_subtitle|h}--><!--{elseif $tpl_title|strlen >= 1}--> / <!--{$tpl_title|h}--><!--{/if}--></title>
30
31        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, user-scalable=0" />
32        <meta name="format-detection" content="telephone=no">
33        <!--{if $arrPageLayout.author|strlen >= 1}-->
34            <meta name="author" content="<!--{$arrPageLayout.author|h}-->" />
35        <!--{/if}-->
36        <!--{if $arrPageLayout.description|strlen >= 1}-->
37            <meta name="description" content="<!--{$arrPageLayout.description|h}-->" />
38        <!--{/if}-->
39        <!--{if $arrPageLayout.keyword|strlen >= 1}-->
40            <meta name="keywords" content="<!--{$arrPageLayout.keyword|h}-->" />
41        <!--{/if}-->
42        <!--{if $arrPageLayout.meta_robots|strlen >= 1}-->
43            <meta name="robots" content="<!--{$arrPageLayout.meta_robots|h}-->" />
44        <!--{/if}-->
45
46        <link rel="shortcut icon" href="<!--{$TPL_URLPATH}-->img/common/favicon.ico" />
47        <link rel="icon" type="image/vnd.microsoft.icon" href="<!--{$TPL_URLPATH}-->img/common/favicon.ico" />
48        <!--{* 共通CSS *}-->
49        <link rel="stylesheet" media="only screen" href="<!--{$TPL_URLPATH}-->css/import.css" />
50
51        <script src="<!--{$TPL_URLPATH}-->js/jquery-1.9.1.min.js"></script>
52        <script src="<!--{$smarty.const.ROOT_URLPATH}-->js/eccube.js"></script>
53        <script src="<!--{$TPL_URLPATH}-->js/eccube.sphone.js"></script>
54        <script src="<!--{$TPL_URLPATH}-->js/jquery.biggerlink.js"></script>
55        <script>//<![CDATA[
56            $(function(){
57                $('.header_navi li, .recommendblock, .list_area, .newslist li, .bubbleBox, .arrowBox, .category_body, .navBox li,#mypagecolumn .cartitemBox').biggerlink();
58            });
59        //]]></script>
60
61        <!--{* jQuery Mobile *}-->
62        <link rel="stylesheet" media="only screen" href="<!--{$TPL_URLPATH}-->js/jquery.mobile/jquery.mobile-1.3.1.min.css" />
63        <script src="<!--{$TPL_URLPATH}-->js/config.js"></script>
64        <script src="<!--{$TPL_URLPATH}-->js/jquery.mobile/jquery.mobile-1.3.1.min.js"></script>
65
66        <!--{* スマートフォンカスタマイズ用CSS *}-->
67        <link rel="stylesheet" media="screen" href="<!--{$TPL_URLPATH}-->js/jquery.facebox/facebox.css" />
68
69        <!--{* スマートフォンカスタマイズ用JS *}-->
70        <script src="<!--{$TPL_URLPATH}-->js/jquery.autoResizeTextAreaQ-0.1.js"></script>
71        <script src="<!--{$TPL_URLPATH}-->js/jquery.flickslide.js"></script>
72
73        <!--{* iPhone用アイコン画像 *}-->
74        <link rel="apple-touch-icon" href="<!--{$TPL_URLPATH}-->img/common/apple-touch-icon.png" />
75
76        <script type="text/javascript">//<![CDATA[
77            <!--{$tpl_javascript}-->
78            $(function(){
79                <!--{$tpl_onload}-->
80            });
81        //]]></script>
82
83        <!--{* ▼Head COLUMN *}-->
84            <!--{if $arrPageLayout.HeadNavi|@count > 0}-->
85                <!--{foreach key=HeadNaviKey item=HeadNaviItem from=$arrPageLayout.HeadNavi}-->
86                    <!--{* ▼<!--{$HeadNaviItem.bloc_name}--> *}-->
87                        <!--{if $HeadNaviItem.php_path != ""}-->
88                            <!--{include_php file=$HeadNaviItem.php_path items=$HeadNaviItem}-->
89                        <!--{else}-->
90                            <!--{include file=$HeadNaviItem.tpl_path items=$HeadNaviItem}-->
91                        <!--{/if}-->
92                    <!--{* ▲<!--{$HeadNaviItem.bloc_name}--> *}-->
93                <!--{/foreach}-->
94            <!--{/if}-->
95        <!--{* ▲Head COLUMN *}-->
96    </head>
97
98    <!-- ▼BODY部 -->
99    <!--{include file='./site_main.tpl'}-->
100    <!-- ▲BODY部 -->
101
102</html>
Note: See TracBrowser for help on using the repository browser.