11 lines
345 B
HTML
11 lines
345 B
HTML
<title>{{ page.get_title }}</title>
|
|
|
|
{% if page.get_description %}
|
|
<meta name="description" content="{{ page.get_description }}"/>
|
|
{% endif %}
|
|
|
|
{% if page.seo_keywords %}
|
|
<meta name="keywords" content="{{ page.seo_keywords }}"/>
|
|
{% elif page.get_description %}
|
|
<meta name="keywords" content="{{ page.get_description }}"/>
|
|
{% endif %} |