{% include {{get_page_path}} mode='absolute' %}
{% capture navigator_path%}{{page_path}}{% endcapture %}
{% capture archive_path %}{{navigator_path}}/archive{% endcapture %}
{% capture date_view %}{{archive_path}}/dateview/{% endcapture %}
{% capture category_view %}{{archive_path}}/categoryview/{% endcapture %}
{% capture tag_view %}{{archive_path}}/tagview/{% endcapture %}
{% capture all_view %}{{archive_path}}/{% endcapture %}
{% comment %}
------------------------------------------------------------------------
https://stackoverflow.com/questions/22763180/assign-an-array-literal-to-a-variable-in-liquid-template
{% assign my_array = "one|two|three" | split: "|" %}
------------------------------------------------------------------------
{% endcomment %}
{% comment %} Debugging
--------------------------------------------------------------------------------
blog_navigator_options.article_navigator.page_text: {{blog_navigator_options.article_navigator.page_text | debug}}
--------------------------------------------------------------------------------
{% endcomment %}
{% if blog_navigator_options.article_navigator.page_text.enabled %}
{% if paginate %}
{{navigator_description_text}}
{% endif %}
{{previewer_headline}}
{{previewer_description_text}}
{% endif %} {% endif %}
{% assign posts_collate = paginator.posts %}
{% case previewer %}
{% when 'list' %}
{% include {{collate_list}} header_alt=page.header_title header_tagline=page.header_tagline items=posts_collate %}
{% when 'calendar' %}
{% include {{collate_calendar}} header_alt=page.header_title header_tagline=page.header_tagline items=posts_collate %}
{% when 'timeline' %}
{% include {{collate_timeline}} items=posts_collate limit_excerpt=50 %}
{% else %}
{% include {{collate_list}} header_alt=page.header_title header_tagline=page.header_tagline items=posts_collate %}
{% endcase %}