diff options
author | Alan Pearce | 2018-06-17 20:19:41 +0000 |
---|---|---|
committer | Alan Pearce | 2018-06-17 20:19:41 +0000 |
commit | fecf1903c37c291b44c7326fa64c615f13855bf7 (patch) | |
tree | d64f2c994d837423aa5b5b7e1087c71080a34709 | |
parent | 6f7b8a114d998778a2cf7772a29feb3bff6cba81 (diff) | |
download | hyde-fecf1903c37c291b44c7326fa64c615f13855bf7.tar.lz hyde-fecf1903c37c291b44c7326fa64c615f13855bf7.tar.zst hyde-fecf1903c37c291b44c7326fa64c615f13855bf7.zip |
Fix print css URL
-rw-r--r-- | layouts/partials/head.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 49a7659..0ef2aa1 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -10,7 +10,7 @@ <title>{{ .Title }} · {{ .Site.Title }}</title> {{ end -}} - <link type="text/css" rel="stylesheet" href="{{ .Site.BaseURL }}css/print.css" media="print"> + <link type="text/css" rel="stylesheet" href="/css/print.css" media="print"> <link rel="stylesheet" href="/css/poole.css"> <link rel="stylesheet" href="/css/syntax.css"> <link rel="stylesheet" href="/css/hyde.css"> |