mirror of
https://github.com/idanoo/m2.nz.git
synced 2024-11-23 00:35:12 +00:00
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 -}}
|