Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 963 Bytes

index.md

File metadata and controls

40 lines (30 loc) · 963 Bytes
title layout date eleventyImport
Groups
page.njk
Last Modified
collections
wg

{% macro listGroups(list, type) %}

{% for wg in list %}
{{ wg.data.title }}
{{wg.data.description}}
{% else %}
We have no active {{ type }}s at this time.
{% endfor %}
{% endmacro %}

Working Groups

WGs are groups that have specific technical deliverables. This means that they work under greater expectations of community scrutiny.

{{ listGroups(collections.wgsByTitle, "working group") }}

Interest Groups

IGs are groups that are focused on discussion and that aren't expected to produce deliverables.

{{ listGroups(collections.igsByTitle, "interest group") }}

Adjacent Working Groups

These are working groups that are related to the IPFS project but that live somewhat farther afield.

{{ listGroups(collections.wgFriendsByTitle, "adjacent working group") }}