app/template/idealinc/default_frame_product.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.     <link rel="shortcut icon" type="image/x-icon" href="{{ asset('assets/favicons/favicon.ico') }}">
  36.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-16x16.png') }}" sizes="16x16">
  37.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-32x32.png') }}" sizes="32x32">
  38.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/icon-96x96.png') }}" sizes="96x96">
  39.     <link rel="apple-touch-icon" sizes="57x57" href="{{ asset('assets/favicons/apple-touch-icon-57x57.png') }}">
  40.     <link rel="apple-touch-icon" sizes="60x60" href="{{ asset('assets/favicons/apple-touch-icon-60x60.png') }}">
  41.     <link rel="apple-touch-icon" sizes="72x72" href="{{ asset('assets/favicons/apple-touch-icon-72x72.png') }}">
  42.     <link rel="apple-touch-icon" sizes="76x76" href="{{ asset('assets/favicons/apple-touch-icon-76x76.png') }}">
  43.     <link rel="apple-touch-icon" sizes="114x114" href="{{ asset('assets/favicons/apple-touch-icon-114x114.png') }}">
  44.     <link rel="apple-touch-icon" sizes="120x120" href="{{ asset('assets/favicons/apple-touch-icon-120x120.png') }}">
  45.     <link rel="apple-touch-icon" sizes="144x144" href="{{ asset('assets/favicons/apple-touch-icon-144x144.png') }}">
  46.     <link rel="apple-touch-icon" sizes="152x152" href="{{ asset('assets/favicons/apple-touch-icon-152x152.png') }}">
  47.     <link rel="apple-touch-icon" sizes="180x180" href="{{ asset('assets/favicons/apple-touch-icon-180x180.png') }}">
  48.     <link rel="icon" type="image/png" href="{{ asset('assets/favicons/android-chrome-192x192.png') }}" sizes="192x192">
  49.     {# <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> #}
  50.     {# <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous"> #}
  51.     <!-- FONTAWESOME -->
  52.     <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
  53.     <link rel="stylesheet" href="{{ asset('assets/css/slick-theme.css') }}">
  54.     <link rel="stylesheet" href="{{ asset('assets/css/slick.css') }}">
  55.     <link rel="stylesheet" href="{{ asset('assets/css/style.css') }}">
  56.     {# <link href="https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap" rel="stylesheet"> #}
  57.     <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500&amp;display=swap" rel="stylesheet">
  58.     <link rel="stylesheet" href="https://unpkg.com/ress@2.0.4/dist/ress.min.css">
  59.     <link href="{{ asset('assets/css/jquery.bxslider.css') }}" rel="stylesheet" type="text/css">
  60.     <link rel="stylesheet" href="{{ asset('assets/css/common.css') }}">
  61.     {% block stylesheet %}{% endblock %}
  62.     <link rel="stylesheet" href="{{ asset('assets/css/ideal2023.css') }}">
  63.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css?20210309') }}">
  64.     <script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
  65.     <script>
  66.         $(function() {
  67.             $.ajaxSetup({
  68.                 'headers': {
  69.                     'ECCUBE-CSRF-TOKEN': $('meta[name="eccube-csrf-token"]').attr('content')
  70.                 }
  71.             });
  72.         });
  73.     </script>
  74.     {# Layout: HEAD #}
  75.     {% if Layout.Head %}
  76.         {{ include('block.twig', {'Blocks': Layout.Head}) }}
  77.     {% endif %}
  78.     {# プラグイン用styleseetやmetatagなど #}
  79.     {% if plugin_assets is defined %}{{ include('@admin/snippet.twig', { snippets: plugin_assets }) }}{% endif %}
  80.     <link rel="stylesheet" href="{{ asset('assets/css/customize.css', 'user_data') }}">
  81. </head>
  82. <body id="page_{{ app.request.get('_route') }}" class="{{ body_class|default('other_page') }}">
  83.     <!-- Google Tag Manager (noscript) -->
  84.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WB5TSPD" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  85.     <!-- End Google Tag Manager (noscript) -->
  86.     <div class="wrap">
  87.         {# MAIN AREA #}
  88.         {% block main %}{% endblock %}
  89.         {% if Layout.Footer %}
  90.             {{ include('block.twig', {'Blocks': Layout.Footer}) }}
  91.         {% endif %}
  92.     </div>
  93.     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  94.     <script src="{{ asset('assets/js/jquery.bxslider.js') }}"></script>
  95.     {% include('@common/lang.twig') %}
  96.     <script src="{{ asset('assets/js/function.js') }}"></script>
  97.     <script src="{{ asset('assets/js/eccube.js') }}"></script>
  98.     <script src="{{ asset('assets/js/jquery.instagramFeed.js') }}"></script>
  99.     <script src="{{ asset('assets/js/slick.min.js') }}"></script>
  100.     <script src="{{ asset('assets/js/ideal2023.js') }}"></script>
  101.     {% block javascript %}{% endblock %}
  102.     {# Layout: CLOSE_BODY_BEFORE #}
  103.     {% if Layout.CloseBodyBefore %}
  104.         {{ include('block.twig', {'Blocks': Layout.CloseBodyBefore}) }}
  105.     {% endif %}
  106.     {# プラグイン用Snippet #}
  107.     {% if plugin_snippets is defined %}
  108.         {{ include('snippet.twig', { snippets: plugin_snippets }) }}
  109.     {% endif %}
  110.     <script src="{{ asset('assets/js/customize.js', 'user_data') }}"></script>
  111.     <meta property="og:url" content="{{ url('homepage') }}" />
  112.     <meta property="og:type" content="website" />
  113.     <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 %}" />
  114.     {% if Page.description is not empty %}
  115.         <meta property="og:description" content="{{ Page.description }}" />
  116.     {% endif %}
  117.     <meta property="og:site_name" content="{{ BaseInfo.shop_name }}" />
  118.     <meta property="og:image" content="{{ asset('assets/img/common/header_logo01.svg') }}" />
  119.     <!-- Buyee -->
  120.     <script id="gc-script" type="text/javascript" charset="utf-8" src="https://connect.gdxtag.com/f0aa39b59e6e32ce3ba0311e8474bd8c2688ba2e5d79a50338aaeca279e13bc5/main.js" defer></script>
  121.     <!-- End Buyee -->
  122. </body>
  123. </html>