source: branches/version-2_11-dev/data/Smarty/templates/sphone/abouts/index.tpl @ 21228

Revision 21228, 4.2 KB checked in by fukap, 13 years ago (diff)

スマートフォンサイト 商品名検索で「全商品」という見出しを修正
該当箇所が他にも見つかったので最後コミット

  • 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<!--{*
2/*
3 * This file is part of EC-CUBE
4 *
5 * Copyright(c) 2000-2011 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<!--▼CONTENTS-->
25<!--{assign var=_site value=$arrSiteInfo}-->
26<!--{if $_site.latitude && $_site.longitude}-->
27 <script type="text/javascript">//<![CDATA[
28   $(function() {
29       $("#maps").css({
30           'margin-top': '15px',
31           'margin-left': 'auto',
32           'margin-right': 'auto',
33           'width': '98%',
34           'height': '300px'
35       });
36       var lat = <!--{$_site.latitude}-->
37       var lng = <!--{$_site.longitude}-->
38       if (lat && lng) {
39           var latlng = new google.maps.LatLng(lat, lng);
40           var mapOptions = {zoom: 15,
41                             center: latlng,
42                             mapTypeId: google.maps.MapTypeId.ROADMAP};
43           var map = new google.maps.Map($("#maps").get(0), mapOptions);
44           var marker = new google.maps.Marker({map: map, position: latlng});
45       } else {
46           $("#maps").remove();
47       }
48   });
49   //]]>
50 </script>
51<!--{/if}-->
52
53<section id="undercolumn">
54   <!--☆当サイトについて -->
55   <h2 class="title"><!--{$tpl_title|h}--></h2>
56
57     <dl class="form_info">
58     <!--{if strlen($objSiteInfo->data.shop_name)}-->
59       <dt>店名</dt>
60        <dd><!--{$objSiteInfo->data.shop_name|h}--></dd>
61     <!--{/if}-->
62
63     <!--{if strlen($objSiteInfo->data.company_name)}-->
64       <dt>会社名</dt>
65        <dd><!--{$objSiteInfo->data.company_name|h}--></dd>
66     <!--{/if}-->
67
68     <!--{if strlen($objSiteInfo->data.zip01)}-->
69       <dt>住所</dt>
70        <dd>〒<!--{$objSiteInfo->data.zip01|h}-->-<!--{$objSiteInfo->data.zip02|h}--><br />
71                 <!--{$objSiteInfo->data.pref|h}--><!--{$objSiteInfo->data.addr01|h}--><!--{$objSiteInfo->data.addr02|h}--></dd>
72     <!--{/if}-->
73
74     <!--{if strlen($objSiteInfo->data.tel01)}-->
75       <dt>電話番号</dt>
76        <dd><!--{$objSiteInfo->data.tel01|h}-->-<!--{$objSiteInfo->data.tel02|h}-->-<!--{$objSiteInfo->data.tel03|h}--></dd>
77     <!--{/if}-->
78
79     <!--{if strlen($objSiteInfo->data.fax01)}-->
80       <dt>FAX番号</dt>
81        <dd><!--{$objSiteInfo->data.fax01|h}-->-<!--{$objSiteInfo->data.fax02|h}-->-<!--{$objSiteInfo->data.fax03|h}--></dd>
82     <!--{/if}-->
83
84     <!--{if strlen($objSiteInfo->data.email02)}-->
85       <dt>メールアドレス</dt>
86        <dd><a href="mailto:<!--{$objSiteInfo->data.email02|escape:'hex'}-->" rel="external"><!--{$objSiteInfo->data.email02|escape:'hexentity'}--></a></dd>
87     <!--{/if}-->
88
89     <!--{if strlen($objSiteInfo->data.business_hour)}-->
90       <dt>営業時間</dt>
91        <dd><!--{$objSiteInfo->data.business_hour|h}--></dd>
92     <!--{/if}-->
93
94     <!--{if strlen($objSiteInfo->data.good_traded)}-->
95       <dt>取扱商品</dt>
96        <dd><!--{$objSiteInfo->data.good_traded|h|nl2br}--></dd>
97     <!--{/if}-->
98
99     <!--{if strlen($objSiteInfo->data.message)}-->
100       <dt>メッセージ</dt>
101        <dd><!--{$objSiteInfo->data.message|h|nl2br}--></dd>
102     <!--{/if}-->
103     </dl>
104
105     <!--☆MAP -->
106     <div id="maps"></div>
107</section>
108<!--▼検索バー -->
109<section id="search_area">
110<form method="get" action="<!--{$smarty.const.ROOT_URLPATH}-->products/list.php">
111<input type="hidden" name="<!--{$smarty.const.TRANSACTION_ID_NAME}-->" value="<!--{$transactionid}-->" />
112<input type="hidden" name="mode" value="search" />
113<input type="search" name="name" id="search" value="" placeholder="キーワードを入力" class="searchbox" >
114</form>
115</section>
116<!--▲検索バー -->
117<!--▲CONTENTS-->
Note: See TracBrowser for help on using the repository browser.