12 lines
181 B
HTML
12 lines
181 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
|
|
</head>
|
|
<body>
|
|
{% for t in texts %}
|
|
<a href="{{t.get_absolute_url}}" title="{{t.title}}">{{ t.title }}</a><br />
|
|
{% endfor %}
|
|
</body>
|
|
</html>
|