File: posts.html

package info (click to toggle)
python-django-piston 0.2.2-1%2Bsqueeze1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 388 kB
  • ctags: 598
  • sloc: python: 2,319; xml: 33; makefile: 6
file content (34 lines) | stat: -rw-r--r-- 460 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>Blogposts</title>

</head>

<body>

	<h1>Posts</h1>
	
	{% for post in posts %}
	
		<h3>{{ post.title }}</h3>
	
		<div>
			
			{{ post.content}}
			
		</div>
		
		<div>
			Written on {{ post.created_on }} by {{ post.author.username }}.
		</div>
	
	{% endfor %}

</body>

</html>