app/template/default/meta.twig line 1

Open in your IDE?
  1. {% if app.request.get('_route') == 'product_detail' %}
  2.     {% set meta_og_type = "og:product" %}
  3.     {% set meta_description = Product.description_list | default(Product.description_detail) | default(Page.description) %}
  4.     {% set meta_canonical = url('product_detail', {'id': Product.id}) %}
  5.     <meta property="og:title" content="{{ Product.name }}" />
  6.     <meta property="og:image" content="{{ absolute_url(asset(Product.main_list_image|no_image_product, 'save_image')) }}" />
  7.     <meta property="product:price:amount" content="{{ Product.getPrice02IncTaxMin }}"/>
  8.     <meta property="product:price:currency" content="{{ eccube_config.currency }}"/>
  9.     <meta property="product:product_link" content="{{ url('product_detail', {'id': Product.id}) }}"/>
  10.     <meta property="product:retailer_title" content="{{ BaseInfo.shop_name }}"/>
  11.     {% if not Product.stock_find %}
  12.         <meta name="robots" content="noindex">
  13.     {% endif %}
  14. {% elseif app.request.get('_route') == 'product_list' %}
  15.     {% set meta_canonical = url('product_list', {'category_id': Category.id|default(null)}) %}
  16.     {% if pagination|length == 0 %}
  17.         <meta name="robots" content="noindex">
  18.     {% endif %}
  19. {% elseif app.request.get('_route') == 'homepage' %}
  20.     {% set meta_og_type = 'website' %}
  21.     {% set meta_canonical = url('homepage') %}
  22. {% elseif Page is defined and Page.edit_type == 0 and Page.url is defined %}
  23.     {% set meta_canonical = url(eccube_config.eccube_user_data_route, {'route': Page.url}) %}
  24. {% endif %}
  25. {% if app.request.host == 'stg-renewal.manaka-store.com' %}
  26.     <meta name="robots" content="noindex,nofollow">
  27. {% endif %}
  28. {% if app.request.pathinfo == '/shopping/complete' %}
  29.     <script>
  30.         window.dataLayer = window.dataLayer || [];
  31.         dataLayer.push({
  32.           'value': {{ Order.total }},
  33.           'transaction_id': '{{ Order.id }}',
  34.           'email': '{{ Order.email }}',
  35.           'phone_number': '{{ Order.phone_number }}'.replace(/[^0-9]/g,'').replace('0','+81')
  36.         });
  37.     </script>
  38. {% endif %}
  39. {% if app.request.host == 'manaka-store.com' %}
  40.     <!-- Google Tag Manager -->
  41.         <script>
  42.             (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  43.             new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  44.             j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  45.             'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  46.             })(window,document,'script','dataLayer','GTM-NG6V73PT');
  47.         </script>
  48.     <!-- End Google Tag Manager -->
  49.     <!-- Google Tag Manager (noscript) -->
  50.         <noscript>
  51.             <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NG6V73PT"
  52.     height="0" width="0" style="display:none;visibility:hidden"></iframe>
  53.         </noscript>
  54.     <!-- End Google Tag Manager (noscript) -->
  55. {% endif %}
  56. <meta property="og:type" content="{{ meta_og_type|default('article') }}"/>
  57. <meta property="og:site_name" content="{{ BaseInfo.shop_name }}"/>
  58. {% set meta_description = meta_description | default(Page.description) %}
  59. {% if meta_description %}
  60.     <meta name="description" content="{{ meta_description|striptags|slice(0,120) }}">
  61.     <meta property="og:description" content="{{ meta_description|striptags|slice(0,120) }}"/>
  62. {% endif %}
  63. {% if meta_canonical|default() %}
  64.     {# canonical url #}
  65.     {# Product list #}
  66.     {% if Category is defined and Category %}
  67.         {% if pagination is defined and pagination.paginationData is defined and pagination.paginationData.pageCount > 1 %}
  68.             {# 最初のページ #}
  69.             {% if pagination.paginationData.current == 1  %}
  70.             <meta property="og:url" content="{{ meta_canonical }}"/>
  71.             <link rel="next" href="{{ meta_canonical }}&pageno=2" title="{{ Category.name }} {{ 'front.product.pageno'|trans({ '%pageno%': 2 }) }}">
  72.             <link rel="canonical" href="{{ meta_canonical }}" />
  73.             {# 最後のページ #}
  74.             {% elseif pagination.paginationData.last == pagination.paginationData.current %}
  75.             <meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}"/>
  76.             <link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ 'front.product.pageno'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  77.             <link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.last }}" />
  78.             {# 途中のページ #}
  79.             {% else %}
  80.             <meta property="og:url" content="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}"/>
  81.             <link rel="next" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.next }}" title="{{ Category.name }} {{ 'front.product.pageno'|trans({ '%pageno%': pagination.paginationData.next }) }}">
  82.             <link rel="prev" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.previous }}" title="{{ Category.name }} {{ 'front.product.pageno'|trans({ '%pageno%': pagination.paginationData.previous }) }}">
  83.             <link rel="canonical" href="{{ meta_canonical }}&pageno={{ pagination.paginationData.current }}" />
  84.             {% endif %}
  85.         {% else %}
  86.         {# ページング無し #}
  87.         <meta property="og:url" content="{{ meta_canonical }}"/>
  88.         <link rel="canonical" href="{{ meta_canonical }}" />
  89.         {% endif %}
  90.     {# Other #}
  91.     {% else %}
  92.     <meta property="og:url" content="{{ meta_canonical }}"/>
  93.     <link rel="canonical" href="{{ meta_canonical }}" />
  94.     {% endif %}
  95. {% endif %}