the code for my website (https://www.annwan.me)
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.

26 lines
723 B

10 months ago
  1. {{ define "main" }}
  2. <header class="content__header">
  3. <h1>{{ .Title | markdownify }}</h1>
  4. {{ .Content }}
  5. </header>
  6. {{ range .Pages }}
  7. <article class="post">
  8. <header class="post__header">
  9. <h1><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h1>
  10. <p class="post__meta">
  11. {{ .Params.author }},
  12. <span class="date">{{ .Date.Format "2 January 2006" }}</span>
  13. </p>
  14. </header>
  15. <section class="post__summary">
  16. {{ .Summary }}
  17. </section>
  18. </article>
  19. {{ end }}
  20. {{ end }}
  21. {{define "aside" }}
  22. {{ if .Params.description }}<p>{{ .Params.description }}</p>{{ end }}
  23. {{ end }}