{% extends "base.html" %}

{% block content %}
<h1>Feed</h1>

{% for page in section.pages %}
<a href="{{ page.permalink }}">
	<div>
		<h2>{{ page.title }}</h2>
		<div>{{ page.date }}</div>
		<p>{{ page.content | striptags | truncate(length=255) }}</p>
	</div>
</a>
{% endfor %}

{% endblock %}