mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
86447ea193
* Add Jekyll docker service and init site * Use minimal mistakes theme * Create splash. Add first pages and toolbars
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 -%}
|