{% for album in get_sibling_content_folders(currentPath) %} ↪ 🗀 {{ album[0] }} {% endfor %}
{% set sorted_files = get_folder_contents(currentPath) | sort(attribute='date_created', reverse=True) %} {% set filtered_files = [] %} {% for file in sorted_files %} {% if 'document' in file.categories %} {{ filtered_files.append(file) or "" }} {% endif %} {% endfor %}
{% for file in filtered_files %} {% if 'document' in file.categories %}

{{ file.date_created }}

{{ file.proper_name }}


{% endif %} {% endfor %}