app/template/default/default_frame.twig line 1

Open in your IDE?
  1. <!doctype html>
  2. {#
  3. This file is part of EC-CUBE
  4. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  5. http://www.ec-cube.co.jp/
  6. For the full copyright and license information, please view the LICENSE
  7. file that was distributed with this source code.
  8. #}
  9. <html lang="{{ eccube_config.locale }}">
  10. <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# product: http://ogp.me/ns/product#">
  11.     <meta charset="utf-8">
  12.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  13.     <meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
  14.     <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>
  15.     {% if Page.author is not empty %}
  16.         <meta name="author" content="{{ Page.author }}">
  17.     {% endif %}
  18.     {% if Page.description is not empty %}
  19.         <meta name="description" content="{{ Page.description }}">
  20.     {% endif %}
  21.     {% if Page.keyword is not empty %}
  22.         <meta name="keywords" content="{{ Page.keyword }}">
  23.     {% endif %}
  24.     {% if Page.meta_robots is not empty %}
  25.         <meta name="robots" content="{{ Page.meta_robots }}">
  26.     {% endif %}
  27.     {% if Page.meta_tags is not empty %}
  28.         {{ include(template_from_string(Page.meta_tags)) }}
  29.     {% endif %}
  30.     <link rel="preconnect" href="https://fonts.gstatic.com">
  31.     <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap" rel="stylesheet">
  32.     <link rel="icon" href="{{ asset('assets/img/common/favicon.ico', 'user_data') }}">
  33.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  34.     <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
  35.     <link rel="stylesheet" href="//cdn.jsdelivr.net/jquery.slick/1.6.0/slick.css">
  36.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  37.     {% block stylesheet %}{% endblock %}
  38.     <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  39.     <script src="/html/user_data/assets/js/jquery.easing.1.3.js"></script>
  40.     <script>
  41.         $(function() {
  42.             $.ajaxSetup({
  43.                 'headers': {
  44.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  45.                 }
  46.             });
  47.         });
  48.     </script>
  49.     {# Layout: HEAD #}
  50.     {% if Layout.Head %}
  51.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  52.     {% endif %}
  53.     {# プラグイン用styleseetやmetatagなど #}
  54.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  55.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  56. </head>
  57. <body>
  58. <div class="ec-layoutRole">
  59.     {{ include('Block/header.twig') }}
  60.     <div class="ec-layoutRole__contents">
  61.       <div class="instagram-box">
  62.         <div class="instagram"><a href="https://www.instagram.com/patisserie_lazry/?hl=ja" target="_blank"></a></div>
  63.       </div>
  64.       {# MAIN AREA #}
  65.       {% block main %}{% endblock %}
  66.     </div>
  67.     {# Layout: CONTENTS_BOTTOM #}
  68.     {% if Layout.ContentsBottom %}
  69.         <div class="ec-layoutRole__contentBottom">
  70.             {{ include('block.twig', {'Blocks': Layout.ContentsBottom}) }}
  71.         </div>
  72.     {% endif %}
  73.     <div class="ec-layoutRole__footer">
  74.         {{ include('Block/footer.twig', ignore_missing = true) }}
  75.     </div>
  76. </div><!-- ec-layoutRole -->
  77. <div class="ec-overlayRole"></div>
  78. <div class="ec-drawerRoleClose"><i class="fas fa-times"></i></div>
  79. <div class="ec-drawerRole">
  80.     {# Layout: DRAWER #}
  81.     {% if Layout.Drawer %}
  82.         {{ include('block.twig', {'Blocks': Layout.Drawer}) }}
  83.     {% endif %}
  84. </div>
  85. <script src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  86. <script src="https://cdn.jsdelivr.net/jquery.slick/1.6.0/slick.min.js"></script>
  87. {% include('@common/lang.twig') %}
  88. <script src="{{ asset('assets/js/function.js') }}"></script>
  89. <script src="{{ asset('assets/js/eccube.js') }}"></script>
  90. {% block javascript %}{% endblock %}
  91. {# プラグイン用Snippet #}
  92. {% if plugin_snippets is defined %}
  93.     {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  94. {% endif %}
  95.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  96. </body>
  97. </html>