<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Element list example</title> </head> <body> {% addbutton element_type="Element" %} <h1>Books</h1> {% for book in elements %} <div class="book"> <h2><a href="{{ book.url }}">{{ book.title }}</a></h2> <p>{{ book.author }} - {{ book.isbn }}</p> <img src="{{ book.cover_photo }}"> </div> {% endfor %} {% sitejs_include %} </body> </html>