diff options
author | Alan Pearce | 2014-06-07 14:48:05 +0100 |
---|---|---|
committer | Alan Pearce | 2014-06-07 14:48:05 +0100 |
commit | 126b3d5b1411cb3be0d54305ff738df7c1e6487a (patch) | |
tree | ff6bacd831a4a4ab67605d90565e2df9339de3fa /layouts/partials | |
parent | 8e077a0573cd45be7438ff617b59d7d3e72924ea (diff) | |
download | hyde-126b3d5b1411cb3be0d54305ff738df7c1e6487a.tar.lz hyde-126b3d5b1411cb3be0d54305ff738df7c1e6487a.tar.zst hyde-126b3d5b1411cb3be0d54305ff738df7c1e6487a.zip |
Remove BaseUrl from stylesheet paths
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/head.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 4e8f1c5..7927826 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -7,10 +7,10 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> <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="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> + <link rel="stylesheet" href="/css/poole.css"> + <link rel="stylesheet" href="/css/syntax.css"> + <link rel="stylesheet" href="/css/hyde.css"> + <link rel="stylesheet" href="/fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> <!-- Icons --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144-precomposed.png"> <link rel="shortcut icon" href="/favicon.ico"> |