diff options
author | 2018-03-29 17:28:40 +0200 | |
---|---|---|
committer | 2018-03-29 16:28:40 +0100 | |
commit | 2ba6687936bb933f0d37caf41a71886c97c0c29b (patch) | |
tree | 94db9476ce6dceba2f7996577e9206e0a1c0cd45 /templates | |
parent | Fix error handler management (diff) |
fixes path to static files in subdomains (#46)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/main/base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/main/base.html b/templates/main/base.html index 635bafce..7e278a09 100644 --- a/templates/main/base.html +++ b/templates/main/base.html @@ -8,8 +8,8 @@ <script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/uikit/3.0.0-beta.39/js/uikit.min.js"></script> <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}"> - <link rel="stylesheet" href="/static/uikit_blurple.css"/> - <link rel="stylesheet" href="/static/style.css"/> + <link rel="stylesheet" href="{{ url_for('static', filename='uikit_blurple.css') }}"/> + <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"/> <!-- OpenGraph metadata --> <meta property="og:title" content="Python Discord | {% block og_title %}{% endblock %}"> |