portfolio/layouts/shortcodes/intro.html

8 lines
191 B
HTML

{{- $id := .Get "id" | default "intro" -}}
{{- $title := .Get "title" -}}
<section id="{{ $id }}">
{{- with $title }}
<h2>{{ . }}</h2>
{{- end }}
{{ .Inner | markdownify }}
</section>