From 60c721db40f627ff4df2b44599eb55ebe23e0415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Wed, 17 Sep 2014 13:10:36 +0200 Subject: [PATCH] Enable css from plugins in page output --- theme/templates/page.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/theme/templates/page.html b/theme/templates/page.html index 89ffc24e6..5966cdabf 100644 --- a/theme/templates/page.html +++ b/theme/templates/page.html @@ -4,6 +4,13 @@ {% block style %} +{% for resource in plugins.resources.css %} + {% if resource.url %} + + {% else %} + + {% endif %} +{% endfor %} {% endblock %}