diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2020-06-07 15:57:26 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2020-06-07 15:57:26 +0200 |
commit | ef2657c050ab6d1ed41eb9a3b2c7a9a3925b35ad (patch) | |
tree | 33d7c9843c526ecd0858298a83914de723afc037 /templates/base.html | |
parent | 982b7ad783f0135af08700465f0ded1a4371000f (diff) | |
download | rabalderz-ef2657c050ab6d1ed41eb9a3b2c7a9a3925b35ad.tar.gz rabalderz-ef2657c050ab6d1ed41eb9a3b2c7a9a3925b35ad.tar.bz2 rabalderz-ef2657c050ab6d1ed41eb9a3b2c7a9a3925b35ad.zip |
Fix issues with paths on duburls.
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index 0724201..1d7b588 100644 --- a/templates/base.html +++ b/templates/base.html @@ -8,7 +8,7 @@ <title>{% if page.title %}{{ page.title }}{% else %}{{ config.title }}{% endif %}</title> <meta name="description" content="{{ config.description }}"> - <link rel="stylesheet" type="text/css" href="/styles.css"> + <link rel="stylesheet" type="text/css" href="{{ get_url(path="/styles.css") | safe }}"> {# <link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}"> #} </head> |