<!DOCTYPE html>
<html lang="ja" prefix="og: http://ogp.me/ns#">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="format-detection" content="telephone=no" />
<meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" />
<link rel="shortcut icon" href="{{ asset('assets/img/favicon.ico') }}" />
<title>
{% if app.request.get('_route') == 'investigation-dtl' %}
{% set pref = app.request.get('pref') %}
{% set area = app.request.get('area') %}
{% if pref or area %}
{{ pref|default('')|e }}{{ area|default('')|e }}の業務用エアコン無料現場調査 | 業務用エアコン専門店「エアコンワーク」
{% endif %}
{% else %}
{% block metatitle %}{{ title }}{% endblock %} | 業務用エアコン専門店「エアコンワーク」
{% endif %}
</title>
{% if Page.meta_tags is not empty %}
{{ include(template_from_string(Page.meta_tags)) }}
{% if Page.description is not empty %}
<meta name="description" content="{{ Page.description }}">
{% endif %}
{% else %}
{{ include('meta.twig') }}
{% endif %}
{% if Page.author is not empty %}
<meta name="author" content="{{ Page.author }}">
{% endif %}
{% if Page.keyword is not empty %}
<meta name="keywords" content="{{ Page.keyword }}">
{% endif %}
{% if Page.meta_robots is not empty %}
<meta name="robots" content="{{ Page.meta_robots }}">
{% endif %}
<script src="{{ asset('front.bundle.js', 'bundle') }}"></script>
{% block stylesheet %}{% endblock %}
<script>
$(function() {
$.ajaxSetup({
'headers': {
'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
}
});
});
</script>
{# Layout: HEAD #}
{% if Layout.Head %}
{{ include('block.twig', {'Blocks': Layout.Head}) }}
{% endif %}
{# プラグイン用styleseetやmetatagなど #}
{% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
</head>
<body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
{# Layout: BODY_AFTER #}
{% if Layout.BodyAfter %}
{{ include('block.twig', {'Blocks': Layout.BodyAfter}) }}
{% endif %}
{% if isMaintenance %}
<!--
<div class="ec-maintenanceAlert">
<div>
{{ 'メンテナンスモードが有効になっています。'|trans }}
</div>
</div>
-->
{% endif %}
<div class="l-wrapper">
{# Layout: HEADER #}
{% if Layout.Header %}
<header class="l-header">
{{ include('block.twig', {'Blocks': Layout.Header}) }}
</header>
{% endif %}
<main class="l-main">
<div class="c-inner">
<div class="l-container">
<div class="l-main__contents">
<div class="c-breadcrumb">
<ul>
<li><a href="{{ url('homepage') }}"><span>エアコンワーク HOME</span></a> »</li>
{% block breadcrumb %}
<li><span itemprop="name">{{ title }}</span></li>
{% endblock %}
</ul>
</div>
{# TITLE AREA #}
{% block title %}
<h1 class="c-title-06">
<span class="s-text">
{{ title }}
</span>
</h1>
{% endblock %}
{% block main_head %}{% endblock %}
{# Layout: MAIN_TOP #}
{% if Layout.MainTop %}
{% if app.request.get('_route') == 'product_list' or app.request.get('_route') == 'product_list_check' %}
{{ include('block.twig', {'Blocks': Layout.MainTop}) }}
{% endif %}
{% endif %}
{# MAIN AREA #}
<div class="c-section">
{% block main %}{% endblock %}
</div>
{# Layout: MAIN_Bottom #}
{% if Layout.MainBottom %}
{{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
{% endif %}
</div>
{# Layout: SIDE_LEFT #}
{% if Layout.SideLeft %}
<aside class="l-sidebar">
{{ include('block.twig', {'Blocks': Layout.SideLeft}) }}
{% endif %}
</div>
</div>
</main>
{# Layout: CONTENTS_FOOTER #}
{% if Layout.Footer %}
<footer class="l-footer">
{{ include('block.twig', {'Blocks': Layout.Footer}) }}
</footer>
{% endif %}
</div>
{% if Layout.CloseBodyBefore %}
{{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
{% endif %}
{% block javascript %}{% endblock %}
</body>
</html>