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

github.com/VVelox/hugo-dusky-neon-potato.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-05 11:48:44 +0300
committerZane C. Bowers-Hadley <vvelox@vvelox.net>2018-09-05 11:48:44 +0300
commit526144217eb07c871502081aa9f5ed7eacd32b68 (patch)
tree5086e96096d19884a3ec559845cffa7a43321e0b
parentd3a53611e027aea8303311597fc18ffb90a9e7b3 (diff)
add fontsheet stuff
-rw-r--r--layouts/partials/head.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index c6576c9..c2039c7 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -38,7 +38,9 @@
{{ end }}
<!-- Hugo Version number -->
{{ .Hugo.Generator -}}
- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600" rel="stylesheet">
+ {{ if .Site.Params.FontSheetUse }}
+ <link href="{{ .Site.Params.FontSheet | default "https://fonts.googleapis.com/css?family=Open+Sans:300,400,600" }}" rel="stylesheet">
+ {{- end -}}
<link rel="stylesheet" href="{{ .Site.BaseURL }}/css/style.css" />
<style type="text/css">
{{ partial "theme-colors.css" . | safeCSS }}