diff options
-rw-r--r-- | layouts/partials/head.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html index e528534..c6c621f 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -19,6 +19,9 @@ {{ else if eq .Kind "home" }} <link rel="stylesheet" type="text/css" href="/css/home.css"> {{ end }} + {{ if .Params.highlight }} + <link rel="stylesheet" type="text/css" href="/css/syntax.css"> + {{ end }} <title>{{ if .Title }}{{ .Title }}{{ if eq .Section "blog" }}{{ if not .IsPage }} Blog Posts{{ end }}{{ end }} | {{if .Site.Params.domain }}{{ .Site.Params.domain }}{{ else }}{{ .Site.Title }}{{ end }}{{ else }}{{ .Site.Title }}{{ end }}</title> </head> |