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

github.com/calintat/minimal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnd-0 <andrej@ohsat.com>2017-10-05 15:31:41 +0300
committerCalin Tataru <calintat@gmail.com>2017-10-05 15:52:30 +0300
commitd2564cbb4bcd456946affc088d467d5dbaf3f75f (patch)
treeccbddbd2c5204798979e72981e815a489a102a36
parentdc970cee92e67d7bf81259bd69b98786a4bd1799 (diff)
Added quotes to font-family property in css.html to enable loading of fonts with multiple spaces in the name
-rw-r--r--layouts/partials/css.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/css.html b/layouts/partials/css.html
index 702e969..405fecd 100644
--- a/layouts/partials/css.html
+++ b/layouts/partials/css.html
@@ -1,7 +1,7 @@
<style>
html body {
- font-family: {{ .Site.Params.font }}, sans-serif;
+ font-family: '{{ .Site.Params.font }}', sans-serif;
background-color: {{ .Site.Params.backgroundColor | default "white" }};
}