{% extends "index.html" %} {% block main %} {%- if section.content %}
{{ section.content | safe }}
{%- endif %} {%- set announcements_section = get_section(path="announcements/_index.md") %} {%- if announcements_section and announcements_section.pages %}

Recent Announcements

{%- for page in announcements_section.pages | slice(end=3) %}

{{ page.title }}

{{ page.content | striptags | truncate(length=150) }}
{%- endfor %}
View all announcements →
{%- endif %} {% include "partials/page_list.html" %} {% endblock main %}