10 lines
253 B
HTML
10 lines
253 B
HTML
{{ $loc := .Get 0 }}
|
|
{{ if .IsNamedParams }}
|
|
<section {{with .Get "class"}} class="{{.}}"{{end}}{{with .Get "id"}} id="{{.}}"{{end}}>
|
|
{{ else if or (eq $loc "") (eq $loc "begin") }}
|
|
<section>
|
|
{{ else if eq $loc "end" }}
|
|
</section>
|
|
{{ end }}
|
|
|