1 2 3 4 5 6 7 8 9
{% extends 'base.html' %} {% block body %} <ul> {% for page in pages %} <li><a href="{{ page.url }}">{{ page.title }}</a></li> {% endfor %} </ul> {% endblock %}