24 lines
549 B
HTML
24 lines
549 B
HTML
{{- $content := .Content -}}
|
|
|
|
{{- if $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 -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- return $content -}}
|