{% comment %} # ----------------------------------------------------------------------------- # ~/_includes/templates/j1/pages/blog_archive_content_generator.html # Liquid template to create the content portion for pages of type PAGE # # Product/Info: # https://jekyll-one.com # # Copyright (C) 2019 Juergen Adams # # J1 Template is licensed under the MIT License. # See: https://github.com/jekyll-one/j1_template_mde/blob/master/LICENSE # # ----------------------------------------------------------------------------- # Test data: # liquid_var: {{ liquid_var | debug }} # page_path: {{ page_path | debug }} # page_url: {{ page.url | remove_first:'page2/index.html' | debug }} # navigator_path: {{ navigator_path | debug }} # # ----------------------------------------------------------------------------- {% endcomment %} {% comment %} Liquid procedures -------------------------------------------------------------------------------- {% endcomment %} {% capture get_page_path %}themes/{{site.template.name}}/procedures/global/get_page_path.proc{% endcapture %} {% capture collate_list %}themes/{{site.template.name}}/procedures/posts/collate_list.proc{% endcapture %} {% capture collate_calendar %}themes/{{site.template.name}}/procedures/posts/collate_calendar.proc{% endcapture %} {% capture collate_timeline %}themes/{{site.template.name}}/procedures/posts/collate_timeline.proc{% endcapture %} {% capture create_navigator %}themes/{{site.template.name}}/procedures/posts/create_navigator.proc{% endcapture %} {% comment %} Variables -------------------------------------------------------------------------------- {% endcomment %} {% assign view_config_article_navigator = site.data.builder.blog_navigator.article_navigator %} {% assign article_navigator_description = view_config_article_navigator.description %} {% assign view_config_article_previewer = site.data.builder.blog_navigator.article_previewer %} {% assign article_previewer_description = view_config_article_previewer.description %} {% assign previewer = site.data.builder.blog_navigator.previewer %} {% assign paginate = site.pagination.enabled %} {% assign rtext = site.data.j1_config.typography.rtext %} {% assign page_rtext = page.rtext %} {% assign page_rtext_size = page.rtext_size %} {% comment %} rtext|size detection -------------------------------------------------------------------------------- {% endcomment %} {% if rtext %} {% assign rtext_size = site.data.j1_config.typography.rtext_size %} {% else %} {% assign rtext_size = 0 %} {% endif %} {% comment %} Main -------------------------------------------------------------------------------- {% endcomment %}