app/template/syntpl/Module/meta.twig line 1

Open in your IDE?
  1. {% if Page.author is not empty %}
  2.     <meta name="author" content="{{ Page.author }}">
  3. {% else %}
  4.     <meta name="author" content="{{ BaseInfo.company_name }}">
  5. {% endif %}
  6. {% if Page.description is not empty %}
  7.     <meta name="description" content="{{ Page.description }}">
  8. {% elseif Product.description_list is defined and Product.description_list is not empty %}
  9.     <meta name="description" content="{{ Product.description_list }}">
  10. {% endif %}
  11. {% if Page.keyword is not empty %}
  12.     <meta name="keywords" content="{{ Page.keyword }}">
  13. {% endif %}
  14. {% if Page.meta_robots is not empty %}
  15.     <meta name="robots" content="{{ Page.meta_robots }}">
  16. {% endif %}
  17. {% if Page.meta_tags is not empty %}
  18.     {{ include(template_from_string(Page.meta_tags)) }}
  19. {% endif %}