First version

This commit is contained in:
Alexis Hassler
2019-04-12 23:08:34 +02:00
commit 61baeb1807
41 changed files with 1383 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{% assign wiki_pages = '' | split: '' %}
{% for collection in site.collections %}
{% assign prefix = collection.label | slice: 0, 4 %}
{% if prefix == 'wiki' %}
{% assign wiki_pages = wiki_pages | concat: collection.docs %}
{% endif %}
{% endfor %}