mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
16 lines
371 B
HTML
16 lines
371 B
HTML
{% assign entries = site[include.collection] %}
|
|
|
|
{% if include.sort_by %}
|
|
{% assign entries = entries | sort: include.sort_by %}
|
|
{% endif %}
|
|
|
|
{% if include.sort_order == 'reverse' %}
|
|
{% assign entries = entries | reverse %}
|
|
{% endif %}
|
|
|
|
{%- for post in entries -%}
|
|
{%- unless post.hidden -%}
|
|
{% include archive-single.html %}
|
|
{%- endunless -%}
|
|
{%- endfor -%}
|