1
{% extends "layout.html" %}
2
{% block body %}
3
  <ul class="entries unstyled">
4
  {% if entries|len > 0 %}
5
    {% for entry in entries %}
6
	    {% if entry.who %}
7
      <li>
8
        @<b>{{ entry.who }}</b>
9
        <b>#{{ entry.what }}</b> /{{ entry.where }} {{ entry.how|safe }}
10
        {% if entry.created|len > 0 %}
11
          <small>created: {{entry.created }} UTC</small>
12
        {% endif %}
13
        <a class="pull-right" href={{ "/posts/" + entry.id }}>
14
          <i class="icon-share-alt"></i>
15
        </a>
16
      </li>
17
			{% endif %}
18
    {% endfor %}
19
  {% else %}
20
    <li><em>Unbelievable.  No entries here so far</em></li>
21
  {% endif %}
22
  </ul>
23
{% endblock %}