0.7.93
meta names
This commit is contained in:
19
templates/inter/meta_names.html
Normal file
19
templates/inter/meta_names.html
Normal file
@@ -0,0 +1,19 @@
|
||||
{% if page.seo_title %}
|
||||
<title>{{ page.seo_title }}</title>
|
||||
{% elif page.title %}
|
||||
<title>{{ page.title }}</title>
|
||||
{% elif page.name %}
|
||||
<title>{{ page.name }}</title>
|
||||
{% endif %}
|
||||
|
||||
{% if page.seo_description %}
|
||||
<meta name="description" content="{{ page.seo_description }}"/>
|
||||
{% elif page.description %}
|
||||
<meta name="description" content="{{ page.description }}"/>
|
||||
{% endif %}
|
||||
|
||||
{% if page.seo_keywords %}
|
||||
<meta name="keywords" content="{{ page.seo_keywords }}"/>
|
||||
{% elif page.description %}
|
||||
<meta name="keywords" content="{{ page.description }}"/>
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user