diff options
Diffstat (limited to 'layouts/partials/docs')
-rw-r--r-- | layouts/partials/docs/html-head.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/partials/docs/html-head.html b/layouts/partials/docs/html-head.html index 2aca710..01f9cba 100644 --- a/layouts/partials/docs/html-head.html +++ b/layouts/partials/docs/html-head.html @@ -3,7 +3,10 @@ <title>{{- template "title" . }} | {{ .Site.Title -}}</title> <!-- Fonts for the theme --> -<link href="https://fonts.googleapis.com/css?family=Oxygen|Oxygen+Mono:300,400,700" rel="stylesheet"> +{{ with .Site.Params.googleFonts | default "true" }} + <link href="https://fonts.googleapis.com/css?family=Oxygen|Oxygen+Mono:300,400,700" rel="stylesheet"> +{{ else }} +{{ end }} <!-- Theme stylesheet, you can customize scss by creatig `assets/custom.scss` in your website --> {{ $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }} |