mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 05:04:21 +01:00
11 lines
274 B
HTML
11 lines
274 B
HTML
|
|
<ul>
|
|
{% for person in site.people %}
|
|
{% if person.people-groups contains include.group %}
|
|
<li>
|
|
<a href="{{ person.permalink }}">{{ person.title }}</a> - {{ person.blurb }}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|