LoveIt/layouts/partials/function/content.html

24 lines
549 B
HTML
Raw Normal View History

2020-05-18 15:30:33 +02:00
{{- $content := .Content -}}
2022-05-03 10:22:17 +02:00
{{- if $content -}}
2022-05-03 10:22:17 +02:00
{{- if .Ruby -}}
{{- $content = partial "function/ruby.html" $content -}}
{{- end -}}
2020-02-03 15:56:49 +01:00
2022-05-03 10:22:17 +02:00
{{- if .Fraction -}}
{{- $content = partial "function/fraction.html" $content -}}
{{- end -}}
2022-05-03 10:22:17 +02:00
{{- if .Fontawesome -}}
{{- $content = partial "function/fontawesome.html" $content -}}
{{- end -}}
2022-05-03 10:22:17 +02:00
{{- $content = partial "function/checkbox.html" $content -}}
2022-05-03 10:22:17 +02:00
{{- $content = partial "function/escape.html" $content -}}
{{- end -}}
{{- return $content -}}