feat: improve configuration (#245)

* feat: improve configuration

* fix: fix partials/footer.html error
This commit is contained in:
Dillon
2020-04-21 22:55:06 +08:00
committed by GitHub
parent 8a0e61085c
commit f14301c395
62 changed files with 1548 additions and 1669 deletions

View File

@@ -1,10 +1,16 @@
{{- $content := . -}}
{{- $content := .content -}}
{{- $content = partial "function/ruby.html" $content -}}
{{- if .ruby -}}
{{- $content = partial "function/ruby.html" $content -}}
{{- end -}}
{{- $content = partial "function/fraction.html" $content -}}
{{- if .fraction -}}
{{- $content = partial "function/fraction.html" $content -}}
{{- end -}}
{{- $content = partial "function/fontawesome.html" $content -}}
{{- if .fontawesome -}}
{{- $content = partial "function/fontawesome.html" $content -}}
{{- end -}}
{{- $content = partial "function/checkbox.html" $content -}}

View File

@@ -3,6 +3,6 @@
{{- /* shuffle md5 as id */ -}}
{{- $id := delimit (split (md5 now.Unix) "" | shuffle | first 6) "" | printf "id-%s" -}}
{{- with .scratch -}}
{{- .SetInMap "contentData" $id $.content -}}
{{- dict $id $.content | dict "data" | dict "config" | merge (.Get "this") | .Set "this" -}}
{{- end -}}
{{- return $id -}}