git.fiddlerwoaroof.com
Raw Blame History
<%inherit file="${context['base']}" />
<%namespace file="pandoc.mako" name="pandoc" />

<%block name="title">Blog Index</%block>

<%block name="content_block">
  <h1>Blog Index</h1>
  %for item in items:
    <article id="${item['counter']}">
      <h2><a href="${item['link']}">${item['title']}</a></h2>
      <p class="description">${item['description']}</p>
    </article>
  %endfor
</%block>