Child: [462c18] (diff)

Download this file

index.html    20 lines (15 with data), 659 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
{% extends 'jinja_master/master.html' %}
{% block title %}{{c.project.name}} / {{c.app.config.options.mount_label}}{% endblock %}
{% block header %}{{c.project.name}} / {{c.app.config.options.mount_label}} Recent posts{% endblock %}
{% block extra_css %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="feed.rss"/>
<link rel="alternate" type="application/atom+xml" title="Atom" href="feed.atom"/>
{% endblock %}
{% block content %}
{% for post in posts %}
{% if not loop.first %}
<hr />
{% endif %}
{{c.form.display(value=post)}}
{% endfor %}
{% endblock %}