summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--theme/templates/page.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/theme/templates/page.html b/theme/templates/page.html
index 89ffc24..5966cda 100644
--- a/theme/templates/page.html
+++ b/theme/templates/page.html
@@ -4,6 +4,13 @@
{% block style %}
<link rel="stylesheet" href="{{ staticBase }}/print.css">
+{% for resource in plugins.resources.css %}
+ {% if resource.url %}
+ <link rel="stylesheet" href="{{ resource.url }}">
+ {% else %}
+ <link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.path }}">
+ {% endif %}
+{% endfor %}
{% endblock %}