diff options
| author | John Nguyen <jtnguyen236@gmail.com> | 2015-09-19 16:51:02 +0800 |
|---|---|---|
| committer | John Nguyen <jtnguyen236@gmail.com> | 2015-09-19 16:51:02 +0800 |
| commit | 9ce37d705944430a2267b782a0e7c643a52a2848 (patch) | |
| tree | 0d3e86ac520d0e4cf74da9e9bf88ca610f8d372c /layouts/partials/header.html | |
| parent | d67df9b5788c4c42a5549b0f9c9471d9cd4714cb (diff) | |
Added BaseURL to links
Diffstat (limited to 'layouts/partials/header.html')
| -rw-r--r-- | layouts/partials/header.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 5fdac85..f832f7d 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -9,14 +9,14 @@ <title>{{ .Title }}</title> <!-- Bootstrap core CSS --> - <link href="/css/bootstrap-theme.css" rel="stylesheet"> + <link href="{{ .Site.BaseURL }}css/bootstrap-theme.css" rel="stylesheet"> <link href='http://fonts.googleapis.com/css?family=Arbutus+Slab&family=Cabin:600&family=Source+Code+Pro' rel='stylesheet' type='text/css'> <!-- Add custom CSS here --> - <link href="/css/HPstyles.css" rel="stylesheet"> - <link href="/css/hugofont.css" rel="stylesheet"> - <link href="/css/owl.carousel.css" rel="stylesheet"> - <link href="/css/owl.theme.default.css" rel="stylesheet"> + <link href="{{ .Site.BaseURL }}css/HPstyles.css" rel="stylesheet"> + <link href="{{ .Site.BaseURL }}css/hugofont.css" rel="stylesheet"> + <link href="{{ .Site.BaseURL }}css/owl.carousel.css" rel="stylesheet"> + <link href="{{ .Site.BaseURL }}css/owl.theme.default.css" rel="stylesheet"> <link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> </head> |
