<!DOCTYPE html>
<html>
<head></head>
<body>
{% for book in elements %}
<a href="{{ book.url }}">{{ book.title }}</a>
<br>
{% endfor %}
{% addbutton element_type="Book" %}
</body>
</html>
You should also choose here a name for element_type (Elements available data fields definition), though we will create that definition itself later. In the example we chose it to be "Book".<!DOCTYPE html>
<html>
<head></head>
<body>
Title:{% editable element.title %}<br>
Description: {% editable element.description %}
</body>
</html>