18 lines
316 B
HTML
18 lines
316 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
</head>
|
|
<body>
|
|
{% for t in texts %}
|
|
<p>
|
|
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
|
|
by {{ t.author }}<br />
|
|
{% autoescape off %}
|
|
{{ t.abstract }}
|
|
{% endautoescape %}
|
|
</p>
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|