diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-20 02:04:15 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-20 02:04:15 +0200 |
commit | 878c105def7ee73648a79019311730a662c11144 (patch) | |
tree | 83fe542865cfe80ae95579274147b04a049b8d7a /theme | |
parent | 74d628676b3d5a49b0f461261ba39c6839557410 (diff) | |
download | gitbook-878c105def7ee73648a79019311730a662c11144.zip gitbook-878c105def7ee73648a79019311730a662c11144.tar.gz gitbook-878c105def7ee73648a79019311730a662c11144.tar.bz2 |
Use complete assets folder for plugins
Diffstat (limited to 'theme')
-rw-r--r-- | theme/templates/site.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/theme/templates/site.html b/theme/templates/site.html index 5e5bfb2..ef74bd2 100644 --- a/theme/templates/site.html +++ b/theme/templates/site.html @@ -39,13 +39,13 @@ {% block javascript %} {% parent %} {% for resource in plugins.resources.js %} -<script src="{{ staticBase }}/plugins/{{ resource.id }}.js"></script> +<script src="{{ staticBase }}/plugins/{{ resource.path }}"></script> {% endfor %} {% endblock %} {% block style %} {% parent %} {% for resource in plugins.resources.css %} -<link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.id }}.css"> +<link rel="stylesheet" href="{{ staticBase }}/plugins/{{ resource.path }}"> {% endfor %} {% endblock %} |