extend template
This commit is contained in:
parent
7c2ef29e2e
commit
516a53f248
1 changed files with 15 additions and 5 deletions
|
@ -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" />
|
||||
|
|
Loading…
Add table
Reference in a new issue