lesetagebuch/templates/home.html

19 lines
348 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title> Lesetagebuch </title>
</head>
<body>
<ul>
{% for book in books %}
<li>
<a href="/book/{{book.id}}">{{ book.title }}</a>
</li>
{% endfor %}
</ul>
</body>
</html>