{% extends "base.html" %} {% block title %} {{ config.title }} {% endblock %} {% block content %} {% set blog_section = get_section(path="blog/_index.md") %} {% for page in blog_section.pages | slice(end=5) %}

{{ page.title }}

{{ page.date | date(format="%B %-d, %Y") }}

{% for tag in page.taxonomies["tags"] %} #{{ tag }} {%- endfor %}

{{ page.summary | safe }}

Read more…

{% if not loop.last %}
{% endif %} {% endfor %} {% endblock %}