{% if Page.author is not empty %}
<meta name="author" content="{{ Page.author }}">
{% else %}
<meta name="author" content="{{ BaseInfo.company_name }}">
{% endif %}
{% if Page.description is not empty %}
<meta name="description" content="{{ Page.description }}">
{% elseif Product.description_list is defined and Product.description_list is not empty %}
<meta name="description" content="{{ Product.description_list }}">
{% endif %}
{% if Page.keyword is not empty %}
<meta name="keywords" content="{{ Page.keyword }}">
{% endif %}
{% if Page.meta_robots is not empty %}
<meta name="robots" content="{{ Page.meta_robots }}">
{% endif %}
{% if Page.meta_tags is not empty %}
{{ include(template_from_string(Page.meta_tags)) }}
{% endif %}