pizzawednes.day/templates/feed.html

21 lines
450 B
HTML

{% extends "base.html" %}
{% block links %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ get_url(path="rss.xml", trailing_slash=false) }}">
{% endblock %}
{% 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 %}