padmatexts/padmaTexts/templates/text_list.html

29 lines
515 B
HTML
Raw Normal View History

2010-11-11 00:34:17 +00:00
<!DOCTYPE html>
<html>
<head>
2010-12-30 12:44:57 +00:00
<title>Padma essays</title>
<link rel="stylesheet" type="text/css" href="/static/css/text.css" />
<style>
p {
margin-top: 8px;
}
h1 {
margin-bottom: 8px;
}
2010-12-30 12:52:17 +00:00
.text {
margin-bottom: 8px;
}
2010-12-30 12:44:57 +00:00
</style>
2010-11-11 00:34:17 +00:00
</head>
2010-12-30 12:44:57 +00:00
<body>
<h1>Padma essays</h1>
2010-11-11 00:34:17 +00:00
{% for t in texts %}
2010-12-30 12:52:17 +00:00
<div class="text">
2010-12-30 10:08:35 +00:00
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
2010-12-30 12:44:57 +00:00
by {{ t.author }}
{{ t.abstract|safe }}
</div>
2010-11-11 00:34:17 +00:00
{% endfor %}
</body>
</html>