<title>{% if page.seoTitle is defined and page.seoTitle is not null %}{{ page.seoTitle }}{% else %}{{ page.title|remove_highlight_word | default(settings('siteName')) }}{% endif %}</title>
<meta name="description"
content="{% if page.seoDescription is defined and page.seoDescription is not null %}{{ page.seoDescription | striptags }}{% else %}{{ page.description | striptags | default(settings('siteDescription')) }}{% endif %}">
<link rel="canonical" href="{{ app.request.schemeAndHttpHost }}/{{ page.currentPath }}"/>
{% if page.noIndex is defined and page.noIndex is not null and page.noIndex %}
<meta name="robots" content="noindex">{% endif %}
{% if page.noFollow is defined and page.noFollow is not null and page.noFollow %}
<meta name="robots" content="noindex,nofollow">{% endif %}
{# hreflang #}
{# amp page link #}
{# <link rel="amphtml" href="https://www.example.com/url/to/amp/document.html"> #}
{# no index pages for dev environment #}
{% if app_env == 'dev' %}
{# <meta name="robots" content="noindex"> #}
{# if you need to temporary allow SEO bots but still no google, uncomment next line and comment previous line #}
<meta name="googlebot" content="noindex">
{% endif %}
{# end noindex #}