You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

37 lines
2.0 KiB

{% load meta %}
{% load i18n %}
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
{% if seo_text %}
{% if seo_text.page_title %}<title>{{ seo_text.page_title }}</title>{% endif %}
{% if seo_text.description %}{% meta 'description' seo_text.description %}{% endif %}
{% elif meta %}
{% if meta.title %}<title>{{ meta.title }}</title>{% endif %}
{% if meta.description %}{% meta 'description' meta.description %}{% endif %}
{% if meta.keywords %}{% meta_list 'keywords' meta.keywords %}{% endif %}
{% if meta.use_og %}
{% if meta.title %}{% og_prop 'title' meta.title %}{% endif %}
{% if meta.url %}{% og_prop 'url' meta.url %}{% endif %}
{% if meta.description %}{% og_prop 'description' meta.description %}{% endif %}
{% if meta.image %}{% og_prop 'image' meta.image %}{% endif %}
{% if meta.object_type %}{% og_prop 'type' meta.object_type %}{% endif %}
{% if meta.site_name %}{% og_prop 'site_name' meta.site_name %}{% endif %}
{% endif %}
{% if meta.use_twitter %}
{% if meta.title %}{% twitter_prop 'title' meta.title %}{% endif %}
{% if meta.url %}{% twitter_prop 'url' meta.url %}{% endif %}
{% if meta.description %}{% twitter_prop 'description' meta.description %}{% endif %}
{% if meta.image %}{% twitter_prop 'image' meta.image %}{% endif %}
{% endif %}
{% if meta.use_googleplus %}
{% if meta.title %}{% googleplus_prop 'name' meta.title %}{% endif %}
{% if meta.url %}{% googleplus_prop 'url' meta.url %}{% endif %}
{% if meta.description %}{% googleplus_prop 'description' meta.description %}{% endif %}
{% if meta.image %}{% googleplus_prop 'image' meta.image %}{% endif %}
{% endif %}
{% else %}
<title>{% block title_head %}{% trans 'Expomap — выставки, конференции, семинары' %}{% endblock %}</title>
<meta name="keywords" content="">
<meta name="description" content="">
{% endif %}