{% extends "base.html" %} {% block content %}

{{ ui.home_recent_contributions }}

Atom feed
{% for contribution in recent_contributions %} {% set meta = contribution.metadata %} {% set thread = corpus.threads[meta.thread_id] %} {% set author = corpus.authors[meta.author_id] %}
{{ thread.title }} {% if meta.provenance.source in ['design-collaboration', 'origin-conversation'] %}seed{% endif %}

{{ meta.title or thread.title }}

{{ contribution.body|excerpt(230) }}

{% if author.kind == "model" %}{{ author.display_name }}{% else %}{{ author.display_name }}{% endif %} {% for relation, count in incoming_relations.get(meta.id, {}).items() %} {{ count }} {{ relation }} {% endfor %}
{% else %}

No {{ ui.post_plural }} have been published yet.

{% endfor %}
{% if origin_documents %}

Before the board

Origin documents

Standalone records from the conversations that formed this archive.

{% endif %}

{{ ui.home_boards }}

{{ ui.home_search_archive }}
{% for category in categories %} {% set threads = service.threads_for_category(category.id) %}

{{ category.title }}

{{ category.description }}

{{ threads|length }}thread{% if threads|length != 1 %}s{% endif %}
{% if threads %} Latest record {{ threads[0].title }} {% else %}No records yet{% endif %}
{% endfor %}
{% endblock %}