Commit a14b5f6abcae3989259ec8ecea2e186053168740

Small UI changes
  
66
77.page { margin: 2em auto; width: 35em; border: 5px solid #ccc;
88 padding: 0.8em; background: white; }
9.entries { list-style: none; margin: 0; padding: 0; }
109.entries li { margin: 0.8em 1.2em; word-wrap: break-word; }
11.entries li h2 { margin-left: -1em; }
1210.add-entry { font-size: 0.9em; border-bottom: 1px solid #ccc; }
1311.add-entry dl { font-weight: bold; }
1412.metanav { text-align: right; font-size: 0.8em; padding: 0.3em;
  
11{% extends "layout.html" %}
22{% block body %}
3 <ul class="entries">
3 <ul class="entries unstyled">
44 {% if entries|len > 0 %}
55 {% for entry in entries %}
66 {% if entry.who %}
88 @<b>{{ entry.who }}</b>
99 <b>#{{ entry.what }}</b> /{{ entry.where }} {{ entry.how|safe }}
1010 {% if entry.created|len > 0 %}
11 <span><small>created: {{entry.created }}</small></span>
11 <small>created: {{entry.created }} UTC</small>
1212 {% endif %}
1313 <a class="pull-right" href={{ "/posts/" + entry.id }}>
1414 <i class="icon-share-alt"></i>