mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 19:06:16 +01:00
f14301c395
* feat: improve configuration * fix: fix partials/footer.html error
19 lines
471 B
HTML
19 lines
471 B
HTML
{{- $content := .content -}}
|
|
|
|
{{- if .ruby -}}
|
|
{{- $content = partial "function/ruby.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- if .fraction -}}
|
|
{{- $content = partial "function/fraction.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- if .fontawesome -}}
|
|
{{- $content = partial "function/fontawesome.html" $content -}}
|
|
{{- end -}}
|
|
|
|
{{- $content = partial "function/checkbox.html" $content -}}
|
|
|
|
{{- $content = partial "function/escape.html" $content -}}
|
|
|
|
{{- return $content -}}
|