diff options
author | philgs | 2015-08-13 11:19:02 -0400 |
---|---|---|
committer | philgs | 2015-08-13 11:19:02 -0400 |
commit | ca2ed0b862a323e420fd90022cba6ddf0f8fd655 (patch) | |
tree | 86fb6748c309fd801d356a7e3adb0cc2e6b1bd1d /layouts/partials/head.html | |
parent | 52c5552a437b2eda38a9f28656a8a28cc0e4815b (diff) | |
download | hyde-ca2ed0b862a323e420fd90022cba6ddf0f8fd655.tar.lz hyde-ca2ed0b862a323e420fd90022cba6ddf0f8fd655.tar.zst hyde-ca2ed0b862a323e420fd90022cba6ddf0f8fd655.zip |
Remove double-slashes in stylesheet URLs
Diffstat (limited to 'layouts/partials/head.html')
-rw-r--r-- | layouts/partials/head.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index fba4ccc..c711dd9 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -11,9 +11,9 @@ <title> {{ .Title }} · {{ .Site.Title }} </title> <!-- CSS --> - <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/poole.css"> - <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/syntax.css"> - <link rel="stylesheet" href="{{ .Site.BaseURL }}/css/hyde.css"> + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/poole.css"> + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/syntax.css"> + <link rel="stylesheet" href="{{ .Site.BaseURL }}css/hyde.css"> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> <!-- Icons --> |