|
@@ -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" />
|