summaryrefslogtreecommitdiff
blob: 1f1a7d33d4080befb5de8f1e18711eebebda045d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% for post in posts %}
<article>
<h2 class="stick-top newsitem-bullet">
      <span class="fa fa-fw fa-chevron-circle-right" title="News item"> </span>
    </h2>
    <h2 class="stick-top newsitem-headline">
  <a href="{{ post.url }}">{{ post.title }}</a> <small>{{ post.created_at }}</small>
   </h2>
    <div class="newsitem-content">
    <p>{{ post.text|safe|escape }}</p>
   </div>
</article>
{% endfor %}