diff options
author | 2018-03-29 22:41:18 +0100 | |
---|---|---|
committer | 2018-03-29 22:41:18 +0100 | |
commit | 55901a4d943238279d9a3abd8e8b0e78d9c71d75 (patch) | |
tree | 59a7fb0b9eaba2259fd81a198b104fa3a103d050 /templates/main/base.html | |
parent | More convenient static_file() function for templates (diff) |
Fix broken countdown static file url
Diffstat (limited to 'templates/main/base.html')
-rw-r--r-- | templates/main/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index d5391791..4978d494 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -52,6 +52,6 @@ </div> </footer> - <script src='/static/js/countdown.js'></script> + <script src='{{ static_file('js/countdown.js') }}'></script> </body> </html> |