blog.html (362B)
1 {% extends "base.html" %} 2 3 {% block content %} 4 <h1 class="title"> 5 {{ section.title }} 6 </h1> 7 <ul> 8 <!-- If you are using pagination, section.pages will be empty. You need to use the paginator object --> 9 {% for page in section.pages %} 10 <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> 11 {% endfor %} 12 </ul> 13 {% endblock content %}