From 55bc68438005359a524dfe37c9cf2964a5e31084 Mon Sep 17 00:00:00 2001 From: Skami18 Date: Thu, 21 Jul 2011 19:10:38 +0200 Subject: [PATCH] Added a `head` block to the `simple` theme. The html lang attribute of the `simple` theme now depends of the `DEFAULT_LANG` variable. --- pelican/themes/simple/templates/base.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pelican/themes/simple/templates/base.html b/pelican/themes/simple/templates/base.html index 172f1ea6..dc266773 100644 --- a/pelican/themes/simple/templates/base.html +++ b/pelican/themes/simple/templates/base.html @@ -1,8 +1,10 @@ - + - {% block title %}{{ SITENAME }}{%endblock%} + {% block head %} + {% block title %}{{ SITENAME }}{% endblock title %} + {% endblock head %}