app/template/default/Block/sub_header_builtin.twig line 1

Open in your IDE?
  1. {% set sidebar_type = 0 %}
  2. {# 商品詳細からの場合 #}
  3. {% if Product is defined %}
  4. {% if Product.ProductCategories is not empty %}
  5.     {% for ProductCategory in Product.ProductCategories %}
  6.         {% for Path in ProductCategory.Category.path %}
  7.             {% if Path.hierarchy == 2 %}
  8.                 {% if Path.name == 'カウンタートップタイプ浄水器' %}
  9.                     {% set sidebar_type = 1 %}
  10.                 {% endif %}
  11.                 {% if Path.name == 'ビルトイン浄水器' %}
  12.                     {% set sidebar_type = 2 %}
  13.                 {% endif %}
  14.             {% endif %}
  15.             {% if Path.hierarchy == 3 %}
  16.                 {% if sidebar_type == 1 %}
  17.                     {% set sidebar_type = 0 %}
  18.                 {% endif %}
  19.                 {% if sidebar_type == 2 %}
  20.                     {% set sidebar_type = 0 %}
  21.                 {% endif %}
  22.             {% endif %}
  23.         {% endfor %}
  24.     {% endfor %}
  25. {% endif %}
  26. {% endif %}
  27. {# 商品一覧からの場合 #}
  28. {% if Category is defined %}
  29. {% if Category is not null %}
  30.     {% for Path in Category.path %}
  31.         {% if Path.hierarchy == 2 %}
  32.             {% if Path.name == 'カウンタートップタイプ浄水器' %}
  33.                 {% set sidebar_type = 1 %}
  34.             {% endif %}
  35.             {% if Path.name == 'ビルトイン浄水器' %}
  36.                 {% set sidebar_type = 2 %}
  37.             {% endif %}
  38.         {% endif %}
  39.         {% if Path.hierarchy == 3 %}
  40.             {% if sidebar_type == 1 %}
  41.                 {% set sidebar_type = 0 %}
  42.             {% endif %}
  43.             {% if sidebar_type == 2 %}
  44.                 {% set sidebar_type = 0 %}
  45.             {% endif %}
  46.         {% endif %}
  47.     {% endfor %}
  48. {% endif %}
  49. {% endif %}
  50. {# カウンタートップタイプ浄水器の場合 #}
  51. {% if sidebar_type == 1 %}
  52. {% endif %}
  53. {# ビルトイン浄水器 #}
  54. {% if sidebar_type == 2 %}
  55. <div style="padding-left: 15px;padding-right: 15px;padding-bottom: 15px;">
  56. <br/>
  57. {#<h1 style="font-size:200%;">ビルトイン浄水器</h1>#}
  58. <h1 style="color:#1266ac; font-size:200%;">浄水器本体はシンク下へ設置してキッチンをすっきりシンプルに。</h1>
  59. <p class="content-text">
  60. <br/>
  61. 浄水器と水栓のセットです。シンク下に浄水器本体が収納されるのでキッチンを広々と使えます。
  62. <br/>
  63. </p>
  64. <br/>
  65. </div>
  66. {% endif %}