11 lines
226 B
HTML
11 lines
226 B
HTML
{{- $id := .Get "id" | default "overview" -}}
|
|
{{- $title := .Get "title" | default "Project overview" -}}
|
|
<section id="{{ $id }}">
|
|
|
|
<h2>{{ $title }}</h2>
|
|
|
|
{{- with .Inner }}
|
|
{{ . | markdownify }}
|
|
{{- end }}
|
|
|
|
</section> |