{{ define "main" }}

{{ .Title | markdownify }}

{{ $authors := .Params.authors | default (slice .Site.Params.defaultAuthor) }}

{{ index $authors 0 }}

{{ if .Params.date }}

{{ .Date.Format "Mon | Jan 2, 2006" }}

{{ end }} {{ range (.GetTerms "tags") }} {{ .LinkTitle }} {{ end }}

Platforms:

{{ delimit .Params.platforms " ยท " }} {{ .Params.featured.alt }}
{{ if .Params.toc }} {{ .TableOfContents }} {{ end }}
{{ .Content }} {{ if gt (len .Data.Pages) 0 }}

Devlogs:

{{ range .Data.Pages }} {{ partial "article-card.html" . }} {{ end }}
{{ end }} >> Home
{{ end }}