| 1 | {{- define "main" -}} |
| 2 | <article class="post-single" data-pagefind-body> |
| 3 | {{ partial "pagefind-metadata.html" . }} |
| 4 | |
| 5 | <header class="post-header"> |
| 6 | <h1 class="post-title entry-hint-parent">{{ .Title }}</h1> |
| 7 | {{- with (.Description | default .Params.summary) }} |
| 8 | <div class="post-description">{{ . }}</div> |
| 9 | {{- end }} |
| 10 | </header> |
| 11 | |
| 12 | {{- if .Content }} |
| 13 | <div class="post-content md-content"> |
| 14 | {{ .Content }} |
| 15 | </div> |
| 16 | {{- end }} |
| 17 | </article> |
| 18 | {{- end -}} |