mirror of
https://github.com/aljazceru/cryptoanarchywiki.github.io.git
synced 2025-12-17 13:14:21 +01:00
24 lines
722 B
HTML
24 lines
722 B
HTML
{% if include.title %}
|
|
<h2>{{ include.title }}</h2>
|
|
{% endif %}
|
|
{% if include.description %}
|
|
{{ include.description }}
|
|
{% endif %}
|
|
<ul>
|
|
{% assign items = site[include.collection_name] | sort: 'order' %}
|
|
{% for item in items %}
|
|
<li>
|
|
{% if item.link-date-prefix %}
|
|
{{ item.link-date-prefix }} -
|
|
{% endif %}
|
|
{% if item.external_link == true %}
|
|
<a href="{{ item.external_url }}">{{ item.title }}</a>
|
|
{% elsif item.no_content == true %}
|
|
{{ item.title }}
|
|
{% else %}
|
|
<a href="{{ item.permalink }}">{{ item.title }}</a>
|
|
{% endif %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|