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

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQueensferry <queensferry.me@gmail.com>2021-02-25 17:27:56 +0300
committerQueensferry <queensferry.me@gmail.com>2021-02-25 18:37:03 +0300
commit8b1d56e0362187b5d88122dc55133a8d5a83357d (patch)
tree0e6538e1b7eef235ea0311a7026d5af2f65f0aa1 /layouts
parent8627f9b84fcc4c3ad832472ccbdbdd6fd2ab89a5 (diff)
chore: use camel-case config params
Diffstat (limited to 'layouts')
-rw-r--r--layouts/partials/foot.html2
-rw-r--r--layouts/partials/head.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/foot.html b/layouts/partials/foot.html
index 7bbffa2..f77f2aa 100644
--- a/layouts/partials/foot.html
+++ b/layouts/partials/foot.html
@@ -1,5 +1,5 @@
<!-- custom css -->
-{{ range .Site.Params.custom_css }}
+{{ range .Site.Params.customCSS }}
<link media="screen" rel="stylesheet" href="{{ . | absURL }}" />
{{ end }}
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 5e86c8c..a56411f 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -22,7 +22,7 @@
{{ end }}
<!-- mathjax -->
-{{ if .Site.Params.enable_mathjax }}
+{{ if .Site.Params.enableMathjax }}
{{ partial "mathjax.html" . }}
{{ end }}