Switch themes to minimo

This commit is contained in:
Dave Gallant
2021-09-06 11:55:05 -04:00
parent 75f9797c91
commit 4ff7aec7c1
302 changed files with 17841 additions and 607 deletions

View File

@@ -0,0 +1,18 @@
<div class='copyright'>
<p>
{{- with .Site.Copyright -}}
{{ . }}
{{- else -}}
{{- with .Site.Params.copyright -}}
{{- with .startyear -}}
{{- if lt ( int . ) now.Year -}}
{{- $.Scratch.Set "copyrightStartYear" . -}}
{{- end -}}
{{- end -}}
{{ .prefix | markdownify }} &copy; {{ with ( $.Scratch.Get "copyrightStartYear" ) }}{{ . }}-{{ end }}{{ now.Year }} {{ or .holder $.Site.Title | markdownify }} {{ .suffix | markdownify }}
{{- end -}}
{{- end -}}
</p>
</div>

View File

@@ -0,0 +1,5 @@
{{/*
If you need to add content to your page footer, override this template in your
blog by creating a file named `/layout/partials/footer/extra.html`. This way
you don't have to edit the theme itself.
*/}}

View File

@@ -0,0 +1,16 @@
{{- $defaultKatex := .Site.Data.config.default.katex -}}
{{- $katex := ( or .Site.Data.config.katex $defaultKatex ) -}}
{{- if or ( eq .Params.katex true ) ( .HasShortcode "katex" ) -}}
<link rel='stylesheet' href='{{- $katex.library.css.main -}}'>
<script src='{{- $katex.library.js.main -}}'></script>
<script src='{{- $katex.library.js.autoRender -}}'></script>
<script type='text/javascript'>
renderMathInElement(document.querySelector('.entry-content'),
{{- $katex.options | jsonify | safeJS -}}
);
</script>
{{- end -}}

View File

@@ -0,0 +1,14 @@
{{- $defaultMathjax := .Site.Data.config.default.mathjax -}}
{{- $mathjax := ( or .Site.Data.config.mathjax $defaultMathjax ) -}}
{{- if eq .Params.mathjax true -}}
<script type='text/x-mathjax-config'>
MathJax.Hub.Config(
{{- $mathjax.config | jsonify -}}
)
</script>
<script type='text/javascript' async src='{{- $mathjax.library.path -}}{{- with $mathjax.library.config -}}?config={{- . -}}{{- end -}}'></script>
{{- end -}}

View File

@@ -0,0 +1,14 @@
{{- $defaultMermaid := .Site.Data.config.default.mermaid -}}
{{- $mermaid := ( or .Site.Data.config.mermaid $defaultMermaid ) -}}
{{- if eq .Params.mermaid true -}}
<script src='{{- $mermaid.library.path -}}' />
<script type='text/javascript'>
mermaid.initialize(
{{- $mermaid.config | jsonify | safeJS -}}
);
</script>
{{- end -}}

View File

@@ -0,0 +1,13 @@
<script>window.__assets_js_src={{- "assets/js/" | relURL -}}</script>
<script src='{{ print "/assets/js/" .Site.Data.assets.main.js | relURL }}'></script>
{{- range .Site.Params.assets.customJS -}}
<script src='{{ . | relURL }}'></script>
{{- end -}}
{{ partial "footer/mathjax" . }}
{{- partial "footer/katex" . -}}
{{- partial "footer/mermaid" . -}}
{{ partial "footer/extra" . }}