EC-CUBE3デザインテンプレート解説:ブロックについて(4)商品検索

本解説は下記ページのデザインテンプレートダウンロード商品の解説です。
http://www.kaiplus.com/products/list.php?category_id=50

デザインテンプレート適用後のサイトデザイン
http://kaiplus.com/eccube3/1605a/

■app/template/[テンプレートコード]/Block/search_product.twig
[HOT検索キーワード]の記述

<div class="word_search">
<span class="hot">HOT検索キーワード:</span>
{# ▼ #}
{% set name = 'ディナー' %}
<a href="{{ url('product_list') }}?category_id=&name={{ name }}">{{ name }}</a>
{# ▼ #}
{% set name = 'フォーク' %}
<a href="{{ url('product_list') }}?category_id=&name={{ name }}">{{ name }}</a>
{# ▼ #}
{% set name = 'パーコレーター' %}
<a href="{{ url('product_list') }}?category_id=&name={{ name }}">{{ name }}</a>
{# ▼ #}
{% set name = '' %}
<a href="{{ url('product_list') }}?category_id=&name={{ name }}">{{ name }}</a>
{# ▼ #}
{% set name = '' %}
<a href="{{ url('product_list') }}?category_id=&name={{ name }}">{{ name }}</a>
</div>

 商品に合わせて「ディナー」等のキーワードを変更してください。
 追加する場合は、set name = ”にキーワードを入力してください。