summaryrefslogtreecommitdiff
path: root/talerblog
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-16 13:54:19 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-16 13:54:19 +0100
commit9e5e6658dd403e0b30bb19bc845d5737eef64936 (patch)
treec3ac5be771cb3883e50a7177db9b4f17cb79d86c /talerblog
parent27414f7f097d4e878bdb279ad7d41f6cdcbc2eb7 (diff)
downloadblog-9e5e6658dd403e0b30bb19bc845d5737eef64936.tar.gz
blog-9e5e6658dd403e0b30bb19bc845d5737eef64936.tar.bz2
blog-9e5e6658dd403e0b30bb19bc845d5737eef64936.zip
use url_for properly
Diffstat (limited to 'talerblog')
-rw-r--r--talerblog/blog/templates/base.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/talerblog/blog/templates/base.html b/talerblog/blog/templates/base.html
index c21a082..6094332 100644
--- a/talerblog/blog/templates/base.html
+++ b/talerblog/blog/templates/base.html
@@ -18,11 +18,11 @@
<html data-taler-nojs="true">
<head>
<title>Taler Donation Demo</title>
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', 'web-common/pure.css') }}" />
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', 'web-common/demo.css') }}" />
- <link rel="stylesheet" type="text/css" href="{{ url_for('static', 'web-common/taler-fallback.css') }}" id="taler-presence-stylesheet" />
- <script src="{{ url_for('static', 'web-common/taler-wallet-lib.js') }}" type="application/javascript"></script>
- <script src="{{ url_for('static', 'web-common/lang.js') }}" type="application/javascript"></script>
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/pure.css') }}" />
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/demo.css') }}" />
+ <link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='web-common/taler-fallback.css') }}" id="taler-presence-stylesheet" />
+ <script src="{{ url_for('static', filename='web-common/taler-wallet-lib.js') }}" type="application/javascript"></script>
+ <script src="{{ url_for('static', filename='web-common/lang.js') }}" type="application/javascript"></script>
{% block styles %}{% endblock %}
{% block scripts %}{% endblock %}
</head>