--- layout: default ---
{% if page.title %}

{{ page.title }}

{% if page.subtitle or content != '' %}
{{ content }}
{% endif %}
{% endif %}
{% assign sorted_adrs = site.adrs | sort: 'date' | reverse %} {% for adr in sorted_adrs %}
{% assign adr_num = adr.title | split: '.' | first | split: ' ' | last %} ADR {{ adr_num }}
{% if adr.date %} {% endif %} {% if adr.status %}
{{ adr.status | capitalize }}
{% endif %}

{{ adr.title | split: '. ' | last }}

{% if adr.categories %}
{% for category in adr.categories %} {{ category }} {% endfor %}
{% endif %} {% if adr.excerpt and adr.excerpt != '' %}

{{ adr.excerpt | strip_html | truncate: 150 }}

{% elsif adr.content %} {% assign content_preview = adr.content | strip_html | strip_newlines | truncatewords: 30 %} {% unless content_preview contains adr.title %}

{{ content_preview }}

{% endunless %} {% endif %}
{% endfor %}