1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{% include "_header" %} {% for p in pages %} <div style="border: 1px solid #ddd; margin: 10px; padding: 0 10px; background: white; color: black"> <h2>[{{forloop.index}}] {{p.title}}</h2> <h3>{{p.author}}</h3> <p> <tt>{{p.citation}}</tt> </p> {{p.description}} </div> {% endfor %} {% include "_footer" %}