2023-06-01 18:11:34 -04:00
|
|
|
---
|
|
|
|
layout: single
|
|
|
|
---
|
|
|
|
{% for item in page.headings %}
|
|
|
|
{%assign mark=''%}
|
2023-06-01 20:14:31 -04:00
|
|
|
{%assign marktwo=''%}
|
2023-06-03 11:58:02 -04:00
|
|
|
{%assign markthree=''%}
|
2023-06-01 18:11:34 -04:00
|
|
|
{% assign content = site.data.standards %}
|
2023-06-03 11:58:02 -04:00
|
|
|
|
|
|
|
{% if item == "W3C ID History" and markthree != 1%}
|
|
|
|
{%assign wgs = "Decentralized Identifiers,Verifiable Credentials,JSON-LD,WebAuthN" | split: ','%}
|
|
|
|
{% assign markthree=1%}
|
|
|
|
<h2 id="Working Groups">Working Groups</h2>
|
|
|
|
{% for wg in wgs %}
|
|
|
|
<h3 id="{{wg}} Working Group">{{wg}} Working Group</h3>
|
|
|
|
{% for row in content %}
|
|
|
|
{% if row.main contains wg and row.section contains "Working Group"%}
|
|
|
|
{% include entry_single.html %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
|
|
|
{%endif%}
|
2023-06-01 18:11:34 -04:00
|
|
|
{% for row in content %}
|
2023-06-01 20:14:31 -04:00
|
|
|
{% unless item contains ";" %}
|
|
|
|
{% if row.section == item and row.main == page.name and mark != 1 %}{%assign mark = 1%}<h2 id="{{item}}">{{item}}</h2><ul>{%endif%}
|
|
|
|
{% endunless %}
|
|
|
|
{% if item contains ";" %}
|
|
|
|
{% assign head = item | split: ";"%}
|
|
|
|
{% if row.section == item and row.main == page.name and marktwo != 1 %}{%assign marktwo = 1%}</ul><h3 id="{{head.last}}">{{head.last}}</h3><ul>{%endif%}
|
|
|
|
{% endif %}
|
2023-06-03 11:58:02 -04:00
|
|
|
{% if row.section contains item and row.main contains page.name %}
|
|
|
|
{% include entry_single.html %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2023-06-01 18:11:34 -04:00
|
|
|
</ul>
|
|
|
|
{% endfor %}
|