22 lines
		
	
	
		
			635 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			635 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% load static %}
 | 
						|
{% load markup %}
 | 
						|
{% load comments %}
 | 
						|
 | 
						|
{% block title %}News{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
{% for post in items.object_list %}
 | 
						|
<h2><a href="{{post.get_absolute_url}}">{{post.title}}</a></h2>
 | 
						|
<div class="byline">By {{post.author}}</div>
 | 
						|
<div class="content">
 | 
						|
    {{post.body|markdown}}
 | 
						|
</div>
 | 
						|
{% get_comment_count for post as comment_count %}
 | 
						|
<div class="commentcount"><a href="{{post.get_absolute_url}}">{{comment_count}} comments »</a></div>
 | 
						|
{% endfor %}
 | 
						|
 | 
						|
{% get_static_prefix as STATIC_PREFIX %}
 | 
						|
<a href="/news/feed"><img src="{{ STATIC_PREFIX }}/feed.png"/></a>
 | 
						|
{% endblock %}
 |