Files
caminus/templates/news/index.html
2012-03-05 01:19:11 -05:00

22 lines
664 B
HTML

{% extends 'news_base.html' %}
{% load static %}
{% load markup %}
{% block title %}News{% endblock %}
{% block content %}
{% for post in items.object_list %}
<div class='item'>
<h2><a href="{{post.get_absolute_url}}">{{post.title}}</a></h2>
<div class="byline">By {{post.author}}</div>
<div class="content">
{{post.body|truncatewords:"100"|markdown}}
</div>
<div class="commentcount"><a href="{{post.get_absolute_url}}">{{post.comments.all|length}} comment{{post.comments.all|length|pluralize}} &raquo;</a></div>
</div>
{% endfor %}
{% get_static_prefix as STATIC_PREFIX %}
<a href="/news/feed"><img src="{{ STATIC_PREFIX }}/feed.png"/></a>
{% endblock %}