app/template/airconwork/default_frame.twig line 1

Open in your IDE?
  1. <!DOCTYPE html>
  2. <html lang="ja" prefix="og: http://ogp.me/ns#">
  3. <head>
  4.   <meta charset="utf-8" />
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6.   <meta name="format-detection" content="telephone=no" />
  7.   <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
  8.   <link rel="shortcut icon" href="{{ asset('assets/img/favicon.ico') }}" />
  9.   <title>
  10.   {% if app.request.get('_route') == 'investigation-dtl' %}
  11.     {% set pref = app.request.get('pref') %}
  12.     {% set area = app.request.get('area') %}
  13.     {% if pref or area %}
  14.         {{ pref|default('')|e }}{{ area|default('')|e }}の業務用エアコン無料現場調査 | 業務用エアコン専門店「エアコンワーク」
  15.     {% endif %}
  16.   {% else %}
  17.     {% block metatitle %}{{ title }}{% endblock %} | 業務用エアコン専門店「エアコンワーク」
  18.   {% endif %}
  19.   </title>
  20.     {% if Page.meta_tags is not empty %}
  21.         {{ include(template_from_string(Page.meta_tags)) }}
  22.         {% if Page.description is not empty %}
  23.             <meta name="description" content="{{ Page.description }}">
  24.         {% endif %}
  25.     {% else %}
  26.         {{ include('meta.twig') }}
  27.     {% endif %}
  28.     {% if Page.author is not empty %}
  29.         <meta name="author" content="{{ Page.author }}">
  30.     {% endif %}
  31.     {% if Page.keyword is not empty %}
  32.         <meta name="keywords" content="{{ Page.keyword }}">
  33.     {% endif %}
  34.     {% if Page.meta_robots is not empty %}
  35.         <meta name="robots" content="{{ Page.meta_robots }}">
  36.     {% endif %}
  37.     <script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
  38.     {% block stylesheet %}{% endblock %}
  39.     <script>
  40.         $(function() {
  41.             $.ajaxSetup({
  42.                 'headers': {
  43.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  44.                 }
  45.             });
  46.         });
  47.     </script>
  48.     {# Layout: HEAD #}
  49.     {% if Layout.Head %}
  50.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  51.     {% endif %}
  52.     {# プラグイン用styleseetやmetatagなど #}
  53.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  54. </head>
  55. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  56. {# Layout: BODY_AFTER #}
  57. {% if Layout.BodyAfter %}
  58.     {{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
  59. {% endif %}
  60. {% if isMaintenance %}
  61. <!--
  62.     <div class="ec-maintenanceAlert">
  63.         <div>
  64.             {{ 'メンテナンスモードが有効になっています。'|trans }}
  65.         </div>
  66.     </div>
  67. -->
  68. {% endif %}
  69.   <div class="l-wrapper">
  70.     {# Layout: HEADER #}
  71.     {% if Layout.Header %}
  72.         <header class="l-header">
  73.             {{ include('block.twig', {'Blocks': Layout.Header}) }}
  74.         </header>
  75.     {% endif %}
  76.     <main class="l-main">
  77.       <div class="c-inner">
  78.         <div class="l-container">
  79.           <div class="l-main__contents">
  80.             <div class="c-breadcrumb">
  81.               <ul>
  82.                 <li><a href="{{ url('homepage') }}"><span>エアコンワーク HOME</span></a> »</li>
  83.                 {% block breadcrumb %}
  84.                 <li><span itemprop="name">{{ title }}</span></li>
  85.                 {% endblock %}
  86.               </ul>
  87.             </div>
  88.             {# TITLE AREA #}
  89.             {% block title %}
  90.             <h1 class="c-title-06">
  91.             <span class="s-text">
  92.             {{ title }}
  93.             </span>
  94.             </h1>
  95.             {% endblock %}
  96.             {% block main_head %}{% endblock %}
  97.             {# Layout: MAIN_TOP #}
  98.             {% if Layout.MainTop %}
  99.             {% if app.request.get('_route') == 'product_list' or app.request.get('_route') == 'product_list_check'  %}
  100.             {{ include('block.twig', {'Blocks': Layout.MainTop}) }}
  101.             {% endif %}
  102.             {% endif %}
  103.             {# MAIN AREA #}
  104.             <div class="c-section">
  105.             {% block main %}{% endblock %}
  106.             </div>
  107.             {# Layout: MAIN_Bottom #}
  108.             {% if Layout.MainBottom %}
  109.               {{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
  110.             {% endif %}
  111.           </div>
  112.         {# Layout: SIDE_LEFT #}
  113.         {% if Layout.SideLeft %}
  114.         <aside class="l-sidebar">
  115.           {{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
  116.         {% endif %}
  117.         </div>
  118.       </div>
  119.     </main>
  120.     {# Layout: CONTENTS_FOOTER #}
  121.     {% if Layout.Footer %}
  122.         <footer class="l-footer">
  123.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  124.         </footer>
  125.     {% endif %}
  126.   </div>
  127. {% if Layout.CloseBodyBefore %}
  128.     {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  129. {% endif %}
  130.   {% block javascript %}{% endblock %}
  131. </body>
  132. </html>