single.html 733 B

1234567891011121314151617
  1. {{ define "main" }}
  2. <article class="flex flex-col lg:flex-row-reverse">
  3. <header class="lg:sticky lg:top-0 lg:h-screen lg:overflow-y-auto lg:w-1/3 p-4">
  4. <h1 class="font-bold">{{ .Title }}</h1>
  5. <p><strong>Date:</strong> <time datetime="{{ .Date.Format "2006-01-02" }}">{{ .Date.Format "January 2, 2006" }}</time></p>
  6. <p><strong>Narrator:</strong> {{ .Params.narrator }}</p>
  7. <p><strong>Facilitator:</strong> {{ .Params.facilitator }}</p>
  8. <p><strong>Subject:</strong> {{ .Params.subject }}</p>
  9. <p><strong>Tags:</strong> {{ partial "tags.html" . }}</p>
  10. </header>
  11. <div class="prose lg:prose-xl lg:w-2/3 p-4">
  12. <p class="font-bold text-4xl">{{ .Title }}</p>
  13. {{ .Content }}
  14. </div>
  15. </article>
  16. {{ end }}