summaryrefslogtreecommitdiff
path: root/themes/LoveIt/layouts/partials/function/content.html
blob: 250a5b7efd2fd5a4c042a3cc33962530f49fbdc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{{- $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 -}}