summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2016-03-14 11:11:57 +0100
committerDaniel Friesel <derf@finalrewind.org>2016-03-14 11:11:57 +0100
commitecdb462bbfc5393056b66d41b9a502d334bf5415 (patch)
tree3099604024273eaea796fc4a7c9c5a5b424753ea /templates
parentf94b43035028313e57876fb51a59870c1d2548ee (diff)
move css/js into static subdirectory to allow easy static serving
Diffstat (limited to 'templates')
-rw-r--r--templates/layouts/default.html.ep10
1 files changed, 5 insertions, 5 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep
index 0d8095d..9217b7a 100644
--- a/templates/layouts/default.html.ep
+++ b/templates/layouts/default.html.ep
@@ -9,13 +9,13 @@
% }
- %= stylesheet '/default.css'
+ %= stylesheet '/static/default.css'
% if ($self->browser->mobile) {
- %= stylesheet '/mobile.css'
+ %= stylesheet '/static/mobile.css'
% }
- %= javascript '/jquery-1.10.2.min.js'
- %= javascript '/collapse.js'
- %= javascript '/marquee.js'
+ %= javascript '/static/jquery-1.10.2.min.js'
+ %= javascript '/static/collapse.js'
+ %= javascript '/static/marquee.js'
%= javascript begin
$(function () { $('marquee').marquee() });
% end