{% 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 {% endcomment %}
{% assign my_array = "one|two|three" | split: "|" %}
{% comment %} End Blog Navigator
-------------------------------------------------------------------- {% endcomment %}
{% comment %} Article Previewer
-------------------------------------------------------------------- {% endcomment %}
{% if paginate %}
Preview
{{article_previewer_description}}
{% assign posts_collate = paginator.posts %}
{% case previewer %}
{% when 'list' %}
{% include {{collate_list}} header_title=page.header_title header_tagline=page.header_tagline items=posts_collate %}
{% when 'calendar' %}
{% include {{collate_calendar}} header_title=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_title=page.header_title header_tagline=page.header_tagline items=posts_collate %}
{% endcase %}