2020-05-18 15:30:33 +02:00
|
|
|
{{- $content := .Content -}}
|
2020-02-03 04:46:30 +01:00
|
|
|
|
2022-05-03 10:22:17 +02:00
|
|
|
{{- if $content -}}
|
2020-09-14 19:14:41 +02:00
|
|
|
|
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 -}}
|
2020-03-17 17:52:36 +01:00
|
|
|
|
2022-05-03 10:22:17 +02:00
|
|
|
{{- if .Fontawesome -}}
|
|
|
|
{{- $content = partial "function/fontawesome.html" $content -}}
|
|
|
|
{{- end -}}
|
2020-03-17 17:52:36 +01:00
|
|
|
|
2022-05-03 10:22:17 +02:00
|
|
|
{{- $content = partial "function/checkbox.html" $content -}}
|
2020-02-03 04:46:30 +01:00
|
|
|
|
2022-05-03 10:22:17 +02:00
|
|
|
{{- $content = partial "function/escape.html" $content -}}
|
2020-03-08 14:02:21 +01:00
|
|
|
|
2020-09-14 19:14:41 +02:00
|
|
|
{{- end -}}
|
|
|
|
|
2020-04-15 09:46:50 +02:00
|
|
|
{{- return $content -}}
|