Child: [6702bc] (diff)

Download this file

neighborhood_feeds.html    11 lines (10 with data), 248 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
<div class="neighborhood_feed_entry">
{% for feed in feeds%}
<h3><a href="{{feed.href}}">{{feed.title}}</a></h3>
<p>
by <em>{{feed.author}}</em>
<small>{{feed.ago}}</small>
</p>
<p>{{feed.description}}</p>
</div>
{%endfor%}