---
layout: page
permalink: /survival/
pagination:
enabled: true
tag: survival
permalink: "/:num.html"
per_page: 30
---
{% assign posts = paginator.posts %}
{%- if posts.size > 0 -%}
{%- if page.list_title -%}
{{ page.list_title }}
{%- endif -%}
{%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%}
{%- for post in posts -%}
-
{{ post.date | date: date_format }}
{%- if site.show_excerpts -%}
{{ post.excerpt }}
{% if post.excerpt != post.content %}
Read more
{% endif %}
{%- endif -%}
{%- endfor -%}
{%- endif -%}