Hugo theme.
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.

34 lines
693 B

  1. {{ define "main" }}
  2. <article>
  3. <h1>{{ .Title }}</h1>
  4. <p class=byline>Collected by <a href=/>{{ .Site.Params.AuthorName }}</a>.</p>
  5. {{ .Content }}
  6. <h2>Categories</h2>
  7. <ul>
  8. {{- range sort .Site.Data.bookmarks "title" }}
  9. <li><a href="#{{ urlize .title }}">{{ .title }}</a></li>
  10. {{- end }}
  11. </ul>
  12. {{ range sort .Site.Data.bookmarks "title" }}
  13. <section id="{{ urlize .title }}">
  14. <h2>{{ .title }}</h2>
  15. {{ if .notes -}}
  16. <p>{{ .notes }}</p>
  17. {{ end }}
  18. {{- range sort .bookmarks "title" }}
  19. <div>
  20. <h3>
  21. <a href="{{ .url }}">{{ .title }}</a>
  22. </h3>
  23. {{ if .notes -}}
  24. <p>{{ .notes }}</p>
  25. {{- end }}
  26. </div>
  27. {{- end }}
  28. </section>
  29. {{- end }}
  30. </article>
  31. {{ end }}