18 lines
388 B
HTML
18 lines
388 B
HTML
{{- $title := .Get "title" -}}
|
|
{{- $label := .Get "label" -}}
|
|
{{- $lede := .Get "lede" -}}
|
|
{{- $body := .Inner -}}
|
|
<div class="response">
|
|
{{- with $label }}
|
|
<label>{{ . }}</label>
|
|
{{- end -}}
|
|
{{- with $title }}
|
|
<h3>{{ . }}</h3>
|
|
{{- end }}
|
|
{{- with $lede }}
|
|
<div class="lede">{{ . | markdownify }}</div>
|
|
{{- end }}
|
|
<div class="response-body">
|
|
{{ $body | .Page.RenderString }}
|
|
</div>
|
|
</div> |