{% for category in site.data.documents %}

{{ category["category"] }}

{% for document in category.documents %}

{{ document["name"] }}

{{ document.author }}

{{ document.description }}

Open with hypothes.is
{% endfor %}
{% endfor %}

Other documents

{% assign documents = site.data.annotations | group_by: "uri" %} {% for document in documents %} {% assign updated = document.items[0].updated %} {% assign name = document.items[0].document.title %} {% assign uri = document.items[0].uri %} {% assign contributors = "" | split: "|" %} {% assign tags = "" | split: "|" %} {% for annotation in document.items %} {% assign contributors = contributors | push: annotation.user %} {% for t in annotation.tags %} {% assign tags = tags | push: t %} {% endfor %} {% endfor %} {% endfor %}
updated document h
{{ updated | date_to_string }}

{{ name }}

{% assign tags_ = tags | uniq %}

{% for tag in tags %} {% include badge.html name=tag %} {% endfor %}

{{ contributors | uniq | size }} {{ document.items | size }} #