diff options
author | Samy Pessé <samypesse@gmail.com> | 2014-04-18 20:19:45 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2014-04-18 20:19:45 +0200 |
commit | 64622c5945b6be910556f2c280bea5b729f11825 (patch) | |
tree | 90d1f3d2c8192e5a37da4fbb77bb75d1ee643660 | |
parent | 837813edb081f6b2e19de76a5b85147ff0c44a22 (diff) | |
download | gitbook-64622c5945b6be910556f2c280bea5b729f11825.zip gitbook-64622c5945b6be910556f2c280bea5b729f11825.tar.gz gitbook-64622c5945b6be910556f2c280bea5b729f11825.tar.bz2 |
Load css before content
-rwxr-xr-x | theme/templates/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theme/templates/layout.html b/theme/templates/layout.html index a231a8c..ae6f1b2 100755 --- a/theme/templates/layout.html +++ b/theme/templates/layout.html @@ -35,10 +35,10 @@ {% endblock %} </head> <body> - {% block content %}{% endblock %} {% block style %} <link rel="stylesheet" href="{{ staticBase }}/style.css"> {% endblock %} + {% block content %}{% endblock %} {% block javascript %} <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/mode-javascript.js"></script> |