---
layout: default
---
{%- assign _posts = site.posts | sort: 'date' | reverse -%}
{%- include header.html scrolly_nav=_posts -%}
{%- if page.content != "" -%}
{%- include section.html title=page.title photo=page.cover-photo photo-alt=page.cover-photo-alt auto-header=page.auto-header content=page.content -%}
{%- endif -%}
{%- for _post in _posts -%}
{%- capture _title -%}
{{- _post.title -}}
{%- endcapture -%}
{%- capture _subtitle -%}
{% if _post.author -%}{{- _post.author }} | {% endif %}
{{- _post.date | date_to_long_string -}}
{%- endcapture -%}
{%- capture _excerpt -%}
{{- _post.excerpt | strip_html | truncatewords: 100 -}}
{%- endcapture -%}
{%- capture _link -%}
read more{%- endcapture -%}
{%- assign _content = _excerpt | append: _link -%}
{%- include section.html title=_title subtitle=_subtitle content=_content -%}
{%- endfor -%}