app/template/default/Common/canonical.twig line 1

Open in your IDE?
  1. {% set PageType = PageType() %}
  2. {% if PageType.type == 'main-category' or PageType.type == 'category' %}
  3.     <link rel="canonical" href="{{ eccube_config.UT_URL }}/{{ category.getCanonicalWebname }}/">
  4. {% elseif PageType.type == 'item' %}
  5.     <link rel="canonical" href="{{ eccube_config.UT_URL }}/item/{{ goods.getItemId() }}.html">
  6. {% elseif PageType.type == 'top' %}
  7.     <link rel="canonical" href="{{ eccube_config.UT_URL }}/">
  8. {% endif %}