padmatexts/padmaTexts/templates/text_list.html
2011-03-14 05:41:55 +05:30

40 lines
819 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="shortcut icon" href="/static/images/favicon.ico" />
<title>Padma Essays</title>
<link rel="stylesheet" type="text/css" href="/static/css/text.css" />
<style>
p {
margin-top: 8px;
}
h1 {
margin-bottom: 8px;
}
.text {
margin-bottom: 8px;
margin-left: 8px;
}
a, a:active {
text-decoration: none;
color: #000;
}
a:hover {
text-decoration: underline;
color: #000;
}
</style>
</head>
<body>
<h1>Padma Essays</h1>
{% for t in texts %}
<div class="text">
<a href="{{t.get_absolute_url}}" title="{{t.title}}"><b>{{ t.title }}</b></a><br />
by {{ t.author }}, {{t.date|date:"F Y"}}
{{ t.abstract|safe }}
</div>
{% endfor %}
</body>
</html>