diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-06-07 16:04:03 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-06-07 16:04:03 +0200 |
commit | f62cf340c521c1be32b158fb03ac597c5c5e857a (patch) | |
tree | 85d4a680a28a457b5f43ca12e3444a0d7497d067 /theme/templates/layout.html | |
parent | 7e12bd35889b5d6fca03a49d9f547a607352090a (diff) | |
download | gitbook-f62cf340c521c1be32b158fb03ac597c5c5e857a.zip gitbook-f62cf340c521c1be32b158fb03ac597c5c5e857a.tar.gz gitbook-f62cf340c521c1be32b158fb03ac597c5c5e857a.tar.bz2 |
Fix title and description for pages in website
Diffstat (limited to 'theme/templates/layout.html')
-rwxr-xr-x | theme/templates/layout.html | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/theme/templates/layout.html b/theme/templates/layout.html index 8e447b1..7f0a83f 100755 --- a/theme/templates/layout.html +++ b/theme/templates/layout.html @@ -3,7 +3,6 @@ {{ htmlSnippet("html:start")|default("") }} <head> {{ htmlSnippet("head:start")|default("") }} - {% block head %} <meta charset="UTF-8"> <title>{% block title %}{% endblock %}</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> @@ -14,7 +13,7 @@ <meta name="apple-mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-status-bar-style" content="black"> <link rel="shortcut icon" href="{{ staticBase }}/images/favicon.ico" type="image/x-icon"> - {% endblock %} + {% block head %}{% endblock %} {{ htmlSnippet("head:end")|default("") }} </head> <body> |