{% if section.extra.show_micro | default(value=true) %} {% if section.extra.micro_path %} {%- set micro_section = get_section(path=section.extra.micro_path) -%} {%- if micro_section -%} {%- set show_pages = micro_section.pages -%} {%- set max_micro = section.extra.max_micro | default(value=5) -%} {%- set section_name = section.extra.micro_section_name | default(value="Latest Thoughts") -%}

{{ section_name }} {%- if micro_section.generate_feeds -%} {%- endif -%}

{% for post in show_pages | slice(end=max_micro) %}
{{ post.content | safe }}
{% endfor %}
{%- if show_pages | length > max_micro -%}
All {{ section_name | lower }} 
{%- endif -%}
{%- endif -%} {% endif %} {% endif %}