2016-03-04 04:10:53 +00:00
|
|
|
{% extends "master.html" %}
|
|
|
|
{% block body %}
|
2016-03-07 00:31:27 +00:00
|
|
|
<div class="section">
|
|
|
|
<h2>blog</h2>
|
2016-03-04 04:10:53 +00:00
|
|
|
{% for entry in entries %}
|
2016-03-07 00:31:27 +00:00
|
|
|
<div class="blog-entry">
|
2016-03-08 05:39:55 +00:00
|
|
|
<h3><a href="{{ url_for('blog') }}/{{ entry.url }}">{{ entry.title }}</a></h3>
|
2016-03-07 00:31:27 +00:00
|
|
|
<h5>{{ entry.updated }}</h5>
|
2016-03-08 05:39:55 +00:00
|
|
|
{{ entry.text|safe }}
|
2016-03-07 00:31:27 +00:00
|
|
|
</div>
|
2016-03-04 04:10:53 +00:00
|
|
|
{% else %}
|
2016-03-07 00:31:27 +00:00
|
|
|
<em>Sorry, I still haven't gotten around to moving my blog posts over!</em>
|
2016-03-04 04:10:53 +00:00
|
|
|
{% endfor %}
|
2016-03-06 02:27:52 +00:00
|
|
|
</div>
|
2016-03-04 04:10:53 +00:00
|
|
|
{% endblock %}
|