<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ BaseInfo.shop_name }}{% if subtitle is defined and subtitle is not empty %} / {{ subtitle }}{% elseif title is defined and title is not empty %} / {{ title }}{% endif %}</title>
<meta name="description" content="a" />
<link rel="stylesheet" href="/assets/css/main.bundle.css" />
</head>
<body>
<!-- container-->
<div class="container">
{# Layout: HEADER #}
{% if Layout.Header %}
{{ include('block.twig', {'Blocks': Layout.Header}) }}
{% endif %}
<main id="main">
{# Layout: MAIN_TOP #}
{% if Layout.MainTop %}
{{ include('block.twig', {'Blocks': Layout.MainTop}) }}
{% endif %}
{# MAIN AREA #}
{% block main %}{% endblock %}
{# Layout: MAIN_Bottom #}
{% if Layout.MainBottom %}
{{ include('block.twig', {'Blocks': Layout.MainBottom}) }}
{% endif %}
</main>
{# Layout: CONTENTS_FOOTER #}
{% if Layout.Footer %}
{{ include('block.twig', {'Blocks': Layout.Footer}) }}
{% endif %}
</div>
<!-- /container-->
</body>
<script src="/assets/js/main.bundle.js"></script>
</html>