blog.html 324 B

123456789101112131415
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <h1 class="main-title">{{ section.title }}</h1>
  4. <ul>
  5. {% for page in section.pages %}
  6. <li>
  7. <a href="{{ page.permalink | safe }}">
  8. {{ page.title }} by {{ page.extra.author }} on {{ page.date }}
  9. </a>
  10. </li>
  11. {% endfor %}
  12. </ul>
  13. {% endblock content %}