16 lines
418 B
HTML
16 lines
418 B
HTML
{{- $params := .params }}
|
|
{{- $odd := .odd }}
|
|
{{- $id := "section"}}
|
|
{{if $params.id}}
|
|
{{- $id = $params.id}}
|
|
{{else if .id}}
|
|
{{- $id = .id }}
|
|
{{end}}
|
|
<div id="{{ $id }}" class="section {{if eq $odd 0}} section-even {{end}}">
|
|
<div class="section-content funding">
|
|
{{ with $params.title }}
|
|
{{ partial "components/title.html" . }}
|
|
{{ end }}
|
|
{{ .content }}
|
|
</div>
|
|
</div>
|