jk.nipponalba.scot website https://jk.nipponalba.scot
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
865 B

  1. {{ $cats := slice }}
  2. {{ range .Site.Data.bookmarks }}
  3. {{ $cats = $cats | append .category }}
  4. {{ end }}
  5. {{ $cats = uniq $cats | sort }}
  6. {{ range $cats }}
  7. {{ $cat := . }}
  8. <h4>{{ $cat }}</h4>
  9. {{ range $.Site.Data.bookmarks }}
  10. {{ if eq .category $cat }}
  11. <section data-post-type="bookmark-of" data-post-id="{{ .Params.slug }}" class="bookmark h-entry">
  12. <div class="author" style="display:none">
  13. <a rel="author" class="p-author h-card" rel="me" href="https://jk.nipponalba.scot"><img src="/images/profile.jpg"/><div class="title">{{ .Site.Params.Title }}</div></a>
  14. </div>
  15. <aside>
  16. <article class="h-cite">
  17. <u><a href="{{ .bookmarkof | absURL }}" class="u-bookmark-of" target="_blank">{{ .name }}</a></u> - <div class="p-name p-content">{{ .content | markdownify }}</div>
  18. </article>
  19. </aside>
  20. </section>
  21. {{ end }}
  22. {{ end }}
  23. {{ end }}