cullmann.io/themes/CodeIT/layouts/partials/function/content.html

24 lines
549 B
HTML
Raw Normal View History

2021-02-18 21:44:01 +01:00
{{- $content := .Content -}}
{{- if $content -}}
2021-02-18 21:44:01 +01:00
{{- if .Ruby -}}
{{- $content = partial "function/ruby.html" $content -}}
{{- end -}}
2021-02-18 21:44:01 +01:00
{{- if .Fraction -}}
{{- $content = partial "function/fraction.html" $content -}}
{{- end -}}
2021-02-18 21:44:01 +01:00
{{- if .Fontawesome -}}
{{- $content = partial "function/fontawesome.html" $content -}}
{{- end -}}
2021-02-18 21:44:01 +01:00
{{- $content = partial "function/checkbox.html" $content -}}
{{- $content = partial "function/escape.html" $content -}}
{{- end -}}
2021-02-18 21:44:01 +01:00
{{- return $content -}}