diff options
author | Marvin Borner | 2019-02-09 17:10:13 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-09 17:10:13 +0100 |
commit | c89812e80076deb5b2210715c3cf92dcf956175a (patch) | |
tree | a94833431cfe28a29e60d6211bcafc1848772bdd | |
parent | 5f0df7b3a723ed1ba5af34a5a4d73ef10a0f9e39 (diff) |
Fixed absolute path
-rw-r--r-- | views/layout.pug | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/layout.pug b/views/layout.pug index 72e457d..ce4bda5 100644 --- a/views/layout.pug +++ b/views/layout.pug @@ -8,7 +8,7 @@ doctype html html head title= title - script(src='/app.js') - link(rel='stylesheet', href='/app.css') + script(src='app.js') + link(rel='stylesheet', href='app.css') body block content |