Posts
{{ content }}
{%- if site.paginate -%}
{% assign posts = paginator.posts %}
{% else %}
{% assign posts = site.posts %}
{% endif %}
{%- if posts.size > 0 -%}
{%- if page.list_title -%}
{{ page.list_title }}
{%- endif -%}
{%- assign date_format = site.fica.date_format | default: "%b %-d, %Y" -%}
{%- for post in posts -%}
-
{%- if site.show_descriptions -%}
{{ post.excerpt }}
{%- endif -%}
{%- endfor -%}
{%- if site.paginate -%}
{%- endif %}
{%- endif -%}