<li>
    <strong><a href="/posts/<%= post.id %>"><%= post.title %></a></strong><br />
    <% if (post.text.length >= 20) { %>
      <%= post.text.substr(0,20)+"..." %>
    <% } else { %>
      <%= post.text %>
    <% } %>
  <a class='bttn' href="/posts/<%= post.id %>/delete">x</a>
  <br /><br />
</li>
