single.html 430 B

1234567891011121314
  1. {{ define "main" }}
  2. <article class="gdoc-post">
  3. <header class="gdoc-post__header">
  4. <h1 class="gdoc-post__title">{{ partial "utils/title" . }}</h1>
  5. <div class="flex flex-wrap align-center gdoc-post__meta gdoc-post__meta--head">
  6. {{ partial "posts/metadata.html" . }}
  7. </div>
  8. </header>
  9. <section class="gdoc-markdown">
  10. {{ partial "utils/content" . }}
  11. </section>
  12. </article>
  13. {{ end }}