diff --git a/templates/article.html b/templates/article.html index ac8ce49..389224f 100644 --- a/templates/article.html +++ b/templates/article.html @@ -1,4 +1,4 @@ -{% with title=title or 'Platypush blog', styles=['/css/blog.css', '/css/code.css'] %} +{% with title=title or 'Platypush blog', skip_header=skip_header, styles=['/css/blog.css', '/css/code.css'] %} {% include 'common-head.html' %} {% endwith %} diff --git a/templates/common-head.html b/templates/common-head.html index be4d45c..4fb9e8e 100644 --- a/templates/common-head.html +++ b/templates/common-head.html @@ -14,6 +14,7 @@ {{ title }} + {% if skip_header == False %}
@@ -28,3 +29,4 @@
+ {% endif %}