Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Diaz Medrano <danieldiaz129@gmail.com>2018-01-27 04:10:03 +0300
committerDaniel Diaz Medrano <danieldiaz129@gmail.com>2018-01-27 04:10:03 +0300
commit0d743956d0e577b9870663efeb115be1746f9187 (patch)
tree24a4c19e852fd162167ea0746c78c5193c45279d /layouts/partials/header.html
parent4c5cc255d095156d2f50b8fe83fbac9497c16bdb (diff)
Params changed to camelCase
Diffstat (limited to 'layouts/partials/header.html')
-rw-r--r--layouts/partials/header.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index a600d09..4b0b5ca 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -50,17 +50,17 @@ crossorigin="anonymous"></script>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Nunito+Sans">
-{{ if .Site.Params.cachebuster }}
+{{ if .Site.Params.cacheBuster }}
{{ $t := now.Unix }}
- <link rel="stylesheet" href="css/{{ .Site.Params.themestyle }}-style.css?t={{$t}}">
+ <link rel="stylesheet" href="css/{{ .Site.Params.themeStyle }}-style.css?t={{$t}}">
{{range .Site.Params.extracssfiles}}
<link rel="stylesheet" href="{{.}}?t={{$t}}">
{{ end }}
{{ else }}
- <link rel="stylesheet" href="css/{{ .Site.Params.themestyle }}-style.css">
+ <link rel="stylesheet" href="css/{{ .Site.Params.themeStyle }}-style.css">
{{range .Site.Params.extracssfiles}}
<link rel="stylesheet" href="{{.}}">
{{end}}
@@ -69,8 +69,8 @@ crossorigin="anonymous"></script>
<!-- Icon -->
<link rel="shortcut icon"
-{{ if .Site.Params.faviconfile }}
- href="{{ .Site.Params.faviconfile }}"
+{{ if .Site.Params.faviconFile }}
+ href="{{ .Site.Params.faviconFile }}"
{{ else }}
href="img/favicon.ico"
{{ end }}