extend template

This commit is contained in:
Roman Shvets 2013-08-28 14:50:44 +03:00
parent 7c2ef29e2e
commit 516a53f248

View file

@ -4,11 +4,21 @@
<meta charset="utf-8" />
<title>{% if meta.title %}{{ meta.title }} | {% endif %}{{ site_title }}</title>
{% if meta.description %}
<meta name="description" content="{{ meta.description }}">
{% endif %}{% if meta.robots %}
<meta name="robots" content="{{ meta.robots }}">
{% endif %}
{% if meta.description is defined %}
<meta name="description" content="{{ meta.description }}">
{% endif %}
{% if meta.keywords is defined %}
<meta name="keywords" content="{{ meta.keywords }}">
{% endif %}
{% if meta.robots is defined %}
<meta name="robots" content="{{ meta.robots }}">
{% endif %}
{% if meta.url is defined %}
<meta name="url" content="{{ meta.url }}">
{% endif %}
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:400,700" type="text/css" />
<link rel="stylesheet" href="{{ theme_url }}/style.css" type="text/css" />