{% extends "base.html" %} {% import "macros.html" as utils %} {% block title %}{{ config.METAREGISTRY_TITLE }} - Collections{% endblock %} {% block container %}
Collections

Collections are curated lists of prefixes along with a description of what the list is for. For example, there's a collection that lists all the resources from the review article Sharing biological data: why, when, and how. There's also a collection comprising semantic web prefixes.

New collections can be added in one of the following ways:

{% for collection in collections %} {% endfor %}
Name Size Description
{{ collection.name }} {{ collection.resources | length }} {{ markdown(collection.description) | safe }} {% if collection.organizations %} {% for org in collection.organizations %} {{ org.name }} {% endfor %} {% endif %}
{% endblock %}