app/template/idealinc/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="format-detection" content="telephone=no">
  14.     <!-- Google Tag Manager -->
  15.     <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  16.     })(window,document,'script','dataLayer','GTM-WB5TSPD');</script>
  17.     <!-- End Google Tag Manager -->
  18.     <meta name="eccube-csrf-token" content="{{ csrf_token(constant('Eccube\\Common\\Constant::TOKEN_NAME')) }}">
  19.     <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>
  20.     {% if Page.author is not empty %}
  21.         <meta name="author" content="{{ Page.author }}">
  22.     {% endif %}
  23.     {% if Page.description is not empty %}
  24.         <meta name="description" content="{{ Page.description }}">
  25.     {% endif %}
  26.     {% if Page.keyword is not empty %}
  27.         <meta name="keywords" content="{{ Page.keyword }}">
  28.     {% endif %}
  29.     {% if Page.meta_robots is not empty %}
  30.         <meta name="robots" content="{{ Page.meta_robots }}">
  31.     {% endif %}
  32.     {% if Page.meta_tags is not empty %}
  33.         {{ include(template_from_string(Page.meta_tags)) }}
  34.     {% endif %}
  35.     <meta name="facebook-domain-verification" content="htwqti1h6bqsjlhxa7q5jhp1mivm8r" />
  36.     <link rel="shortcut icon" type="image/x-icon" href="{{ asset('assets/favicons/favicon.ico') }}">
  37.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-16x16.png') }}" sizes="16x16">
  38.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-32x32.png') }}" sizes="32x32">
  39.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-96x96.png') }}" sizes="96x96">
  40.     <link rel="apple-touch-icon" sizes="57x57" href="{{ asset('assets/favicons/apple-touch-icon-57x57.png') }}">
  41.     <link rel="apple-touch-icon" sizes="60x60" href="{{ asset('assets/favicons/apple-touch-icon-60x60.png') }}">
  42.     <link rel="apple-touch-icon" sizes="72x72" href="{{ asset('assets/favicons/apple-touch-icon-72x72.png') }}">
  43.     <link rel="apple-touch-icon" sizes="76x76" href="{{ asset('assets/favicons/apple-touch-icon-76x76.png') }}">
  44.     <link rel="apple-touch-icon" sizes="114x114" href="{{ asset('assets/favicons/apple-touch-icon-114x114.png') }}">
  45.     <link rel="apple-touch-icon" sizes="120x120" href="{{ asset('assets/favicons/apple-touch-icon-120x120.png') }}">
  46.     <link rel="apple-touch-icon" sizes="144x144" href="{{ asset('assets/favicons/apple-touch-icon-144x144.png') }}">
  47.     <link rel="apple-touch-icon" sizes="152x152" href="{{ asset('assets/favicons/apple-touch-icon-152x152.png') }}">
  48.     <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('assets/favicons/apple-touch-icon-180x180.png') }}">
  49.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/android-chrome-192x192.png') }}" sizes="192x192">
  50.     {# <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> #}
  51.     {# <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous"> #}
  52.     <!-- FONTAWESOME -->
  53.     <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
  54.     {# <link href="https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap" rel="stylesheet"> #}
  55.     <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500&amp;display=swap" rel="stylesheet">
  56.     <link rel="stylesheet" href="https://unpkg.com/ress@2.0.4/dist/ress.min.css">
  57.     <link rel="stylesheet" href="{{ asset('assets/css/slick-theme.css') }}">
  58.     <link rel="stylesheet" href="{{ asset('assets/css/slick.css') }}">
  59.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  60.     <link href="{{ asset('assets/css/jquery.bxslider.css') }}" rel="stylesheet" type="text/css">
  61.     {% block stylesheet %}{% endblock %}
  62.     <link rel="stylesheet" href="{{ asset('assets/css/ideal2023.css') }}">
  63.     <link rel="stylesheet" href="{{ asset('assets/css/common.css') }}">
  64.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css?20210309') }}">
  65.     <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  66.     <script>
  67.         $(function() {
  68.             $.ajaxSetup({
  69.                 'headers': {
  70.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  71.                 }
  72.             });
  73.         });
  74.     </script>
  75.     {# プラグイン用styleseetやmetatagなど #}
  76.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  77.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  78. </head>
  79. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  80.     <!-- Google Tag Manager (noscript) -->
  81.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WB5TSPD" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  82.     <!-- End Google Tag Manager (noscript) -->
  83.     <div class="wrap {{ wrap_class|default('') }}">
  84.         {% block main %}{% endblock %}
  85.         {% if footer is not defined or footer %}
  86.         {{ include('Block/footer.twig') }}
  87.         {% endif %}
  88.     </div>
  89.     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  90.     <script src="{{ asset('assets/js/jquery.bxslider.js') }}"></script>
  91.     <script src="{{ asset('assets/js/slick.min.js') }}"></script>
  92.     {% include('@common/lang.twig') %}
  93.     <script src="{{ asset('assets/js/function.js') }}"></script>
  94.     <script src="{{ asset('assets/js/eccube.js') }}"></script>
  95.     <script src="{{ asset('assets/js/jquery.instagramFeed.js') }}"></script>
  96.     <script src="{{ asset('assets/js/ideal2023.js') }}"></script>
  97.     {% block javascript %}{% endblock %}
  98.     {# Layout: CLOSE_BODY_BEFORE #}
  99.     {% if Layout.CloseBodyBefore %}
  100.         {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  101.     {% endif %}
  102.     {# プラグイン用Snippet #}
  103.     {% if plugin_snippets is defined %}
  104.         {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  105.     {% endif %}
  106.     <script src="{{ asset('assets/js/customize.js') }}"></script>
  107.     <meta property="og:url" content="{{ url('homepage') }}" />
  108.     <meta property="og:type" content="website" />
  109.     <meta property="og:title" content="{{ BaseInfo.shop_name }}{% if subtitle is defined and subtitle is not empty %} / {{ subtitle }}{% elseif title is defined and title is not empty %} / {{ title }}{% endif %}" />
  110.     {% if Page.description is not empty %}
  111.         <meta property="og:description" content="{{ Page.description }}" />
  112.     {% endif %}
  113.     <meta property="og:site_name" content="{{ BaseInfo.shop_name }}" />
  114.     <meta property="og:image" content="{{ url('homepage') }}{{ asset('assets/img/common/header_logo01.svg') }}" />
  115.     <!-- Buyee -->
  116.     <script id="gc-script" type="text/javascript" charset="utf-8" src="https://connect.gdxtag.com/f0aa39b59e6e32ce3ba0311e8474bd8c2688ba2e5d79a50338aaeca279e13bc5/main.js" defer></script>
  117.     <!-- End Buyee -->
  118. </body>
  119. </html>