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