This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
1 |
{% extends "layout.html" %} |
2 |
{% block body %} |
3 |
<ul class="entries"> |
4 |
{% if entries|len > 0 %} |
5 |
{% for entry in entries %} |
6 |
<li> |
7 |
@<b>{{ entry.who }}</b> |
8 |
<b>#{{ entry.what }}</b> /{{ entry.where }} {{ entry.how|safe }} |
9 |
{% if entry.created|len > 0 %} |
10 |
<span><small>created: {{entry.created }}</small></span> |
11 |
{% endif %} |
12 |
<a class="pull-right" href={{ "/posts/" + entry.id }}> |
13 |
<i class="icon-share-alt"></i> |
14 |
</a> |
15 |
</li> |
16 |
{% endfor %} |
17 |
{% else %} |
18 |
<li><em>Unbelievable. No entries here so far</em></li> |
19 |
{% endif %} |
20 |
</ul> |
21 |
{% endblock %} |