source: branches/version-2_5-dev/data/Smarty/templates/admin/basis/seo.tpl @ 20116

Revision 20116, 4.1 KB checked in by nanasess, 13 years ago (diff)
  • svn properties を再設定
  • 再設定用のスクリプト追加
  • 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-2010 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<form name="form1" id="form1" method="post" action="?" onSubmit="return window.confirm('登録しても宜しいですか');">
25<input type="hidden" name="mode" value="confirm">
26<input type="hidden" name="device_type_id" value="" />
27<input type="hidden" name="page_id" value="" />
28<div id="basis" class="contents-main">
29  <!--{if count($arrPageData) > 0}-->
30    <!--{foreach name=device key=device_key item=arrDevicePageData from=$arrPageData}-->
31    <!--{if count($arrDevicePageData) > 0}-->
32    <!--{foreach name=page key=key item=item from=$arrDevicePageData}-->
33    <!-- <!--{$item.page_name}--> ここから -->
34    <!--{if $smarty.foreach.page.first == true}--><h1><!--{$arrDeviceTypeName[$item.device_type_id]}--></h1><!--{/if}-->
35    <h2><!--{$item.page_name}--> <!--{$item.url}--></h2>
36   
37    <div id="
38         _<!--{$item.device_type_id}-->_<!--{$item.page_id}-->">
39      <table>
40        <tr>
41          <th>メタタグ:Author</th>
42          <td>
43          <span class="attention"><!--{$arrErr[$item.device_type_id][$item.page_id].author}--></span>
44          <input type="text" name="meta[<!--{$item.device_type_id}-->][<!--{$item.page_id}-->][author]" value="<!--{$item.author|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style='<!--{if $arrErr[$item.page_id].author != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->' /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span></td>
45        </tr>
46        <tr>
47          <th>メタタグ:Description</th>
48          <td>
49          <span class="attention"><!--{$arrErr[$item.device_type_id][$item.page_id].description}--></span>
50          <input type="text" name="meta[<!--{$item.device_type_id}-->][<!--{$item.page_id}-->][description]" value="<!--{$item.description|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style='<!--{if $arrErr[$item.page_id].description != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->' /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span></td>
51        </tr>
52        <tr>
53          <th>メタタグ:Keywords</th>
54          <td>
55          <span class="attention"><!--{$arrErr[$item.device_type_id][$item.page_id].keyword}--></span>
56          <input type="text" name="meta[<!--{$item.device_type_id}-->][<!--{$item.page_id}-->][keyword]" value="<!--{$item.keyword|h}-->" maxlength="<!--{$smarty.const.STEXT_LEN}-->" size="60" class="box60" style='<!--{if $arrErr[$item.page_id].keyword != ""}-->background-color: <!--{$smarty.const.ERR_COLOR}-->;<!--{/if}-->' /><span class="attention"> (上限<!--{$smarty.const.STEXT_LEN}-->文字)</span></td>
57        </tr>
58      </table>
59   
60      <div class="btn-area">
61        <ul>
62          <li><a class="btn-action" href="javascript:;" onclick="document.form1.device_type_id.value = <!--{$item.device_type_id}-->; document.form1.page_id.value = <!--{$item.page_id}-->; fnFormModeSubmit('form1', 'confirm', '', ''); return false;"><span class="btn-next">この内容で登録する</span></a></li>
63        </ul>
64      </div>
65   
66    </div>
67    <!-- <!--{$item.page_name}--> ここまで -->
68    <!--{/foreach}-->
69    <!--{/if}-->
70    <!--{/foreach}-->
71  <!--{else}-->
72    <div class="no-data">
73          表示するデータがありません
74    </div>
75  <!--{/if}-->
76
77</div>
78</form>
Note: See TracBrowser for help on using the repository browser.