summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-05-28 14:17:39 +0200
committerSamy Pessé <samypesse@gmail.com>2015-05-28 14:17:39 +0200
commita877acf905af5ae9bde8ba84be973ebc1a17d432 (patch)
treebe15f08ad5c69c59082d2bb929cf8bd095a84507
parentac756ddf7e17f2dd9da2694b4defd46d64c8bb99 (diff)
parent1a6077824855ce4a43d464bd9171e777f2fa77ae (diff)
downloadgitbook-a877acf905af5ae9bde8ba84be973ebc1a17d432.zip
gitbook-a877acf905af5ae9bde8ba84be973ebc1a17d432.tar.gz
gitbook-a877acf905af5ae9bde8ba84be973ebc1a17d432.tar.bz2
Merge pull request #759 from aschempp/hotfix/stylesheets
Move style sheets to the <head> section
-rw-r--r--theme/templates/website/layout.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/website/layout.html b/theme/templates/website/layout.html
index 6f5a845..d2d16fc 100644
--- a/theme/templates/website/layout.html
+++ b/theme/templates/website/layout.html
@@ -17,12 +17,12 @@
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ staticBase }}/images/apple-touch-icon-precomposed-152.png">
<link rel="shortcut icon" href="{{ staticBase }}/images/favicon.ico" type="image/x-icon">
+ {% block style %}{% endblock %}
{% block head %}{% endblock %}
{{ htmlSnippet("head:end")|default("")|safe }}
</head>
<body>
{{ htmlSnippet("body:start")|default("")|safe }}
- {% block style %}{% endblock %}
{% block content %}{% endblock %}
{% block javascript %}{% endblock %}
{{ htmlSnippet("body:end")|default("")|safe }}