Added check for .Site.Params.googleFonts

Functionality to enable or disable Google Fonts.
soper-book
V.H. Belvadi 2019-05-02 07:51:11 +05:30 committed by Alex Shpak
parent dce059f507
commit 8fe1725ff3
1 changed files with 4 additions and 1 deletions

View File

@ -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 }}