LoveIt/layouts/partials/function/content.html

24 lines
511 B
HTML
Raw Normal View History

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