mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 13:14:21 +01:00
15 lines
557 B
HTML
15 lines
557 B
HTML
|
|
<ul>
|
|
{% for organisation in site.organisations %}
|
|
<li>
|
|
{% if organisation.external_link == true %}
|
|
<a href="{{ organisation.external_url }}">{{ organisation.title }}</a> - {{ organisation.blurb }}
|
|
{% elsif organisation.no_content == true %}
|
|
{{ organisation.title }} - {{ organisation.blurb }}
|
|
{% else %}
|
|
<a href="{{ organisation.permalink }}">{{ organisation.title }}</a> - {{ organisation.blurb }}
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|