You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

single.html 653B

7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
7 vuotta sitten
12345678910111213141516171819
  1. {{ define "header" }}{{ partial "page-header.html" . }}{{ end }}
  2. {{ define "main" }}
  3. <article class="center cf pv5 mw7">
  4. <p class="f6 fw8">
  5. {{ humanize .Section | upper }}
  6. </p>
  7. <h1 class="f1">
  8. {{ .Title }}
  9. </h1>
  10. {{/* TODO: Add Hugo author */}}
  11. <time class="f6 mv4 dib tracked" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
  12. {{ .Date.Format "January 2, 2006" }}
  13. </time>
  14. <section class="nested-copy-line-height lh-copy serif f4 measure-wide-l nested-links nested-img mid-gray">
  15. {{ .Content | markdownify }}
  16. </section>
  17. {{ partial "tags.html" . }}
  18. </article>
  19. {{ end }}