13 lines
309 B
HTML
13 lines
309 B
HTML
|
{% extends "site_base.html" %}
|
||
|
|
||
|
{% block title %}Pizza Wednesday Feed{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% for post in posts %}
|
||
|
<div>
|
||
|
<div>{{ post.title }}</div>
|
||
|
<div>{{ base_url }}{{ post.path }}</div>
|
||
|
<div>{{ post.pub_date.strftime('%a, %d %b %Y %H:%M:%S %z') }}</div>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% endblock %}
|