diff options
Diffstat (limited to 'theme/templates/site.html')
-rw-r--r-- | theme/templates/site.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/theme/templates/site.html b/theme/templates/site.html index e40662c..5e5bfb2 100644 --- a/theme/templates/site.html +++ b/theme/templates/site.html @@ -35,3 +35,17 @@ </div> </div> {% endblock %} + +{% block javascript %} +{% parent %} +{% for resource in plugins.resources.js %} +<script src="{{ staticBase }}/plugins/{{ resource.id }}.js"></script> +{% endfor %} +{% endblock %} + +{% block style %} +{% parent %} +{% for resource in plugins.resources.css %} +<link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.id }}.css"> +{% endfor %} +{% endblock %} |