summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ickstadt <mattico8@gmail.com>2018-09-04 14:16:42 -0400
committerGitHub <noreply@github.com>2018-09-04 14:16:42 -0400
commit48c97dadd01266b774c91453ddec60a95b95ce5e (patch)
treefa52c5106d9fa68059f50523412d6d7fa200b7a2
parenta0e7b19784443ea777e559edda8a59e1e7092a3b (diff)
parent65198a763208c6fc3ce91c2cd59656c947d03007 (diff)
Merge pull request #777 from wirelyre/fix-additional-css-and-js
Fix paths to additional CSS and JavaScript files
-rw-r--r--src/theme/index.hbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/theme/index.hbs b/src/theme/index.hbs
index bc90b00c..982c2f7d 100644
--- a/src/theme/index.hbs
+++ b/src/theme/index.hbs
@@ -27,7 +27,7 @@
<!-- Custom theme stylesheets -->
{{#each additional_css}}
- <link rel="stylesheet" href="{{ this }}">
+ <link rel="stylesheet" href="{{ ../path_to_root }}{{ this }}">
{{/each}}
{{#if mathjax_support}}
@@ -235,7 +235,7 @@
<!-- Custom JS scripts -->
{{#each additional_js}}
- <script type="text/javascript" src="{{ path_to_root }}{{this}}"></script>
+ <script type="text/javascript" src="{{ ../path_to_root }}{{this}}"></script>
{{/each}}
{{#if is_print}}