gallery.html 690 B

1234567891011121314151617181920212223242526
  1. {% extends "base.html" %}
  2. <!-- -->
  3. {% block content %}
  4. <div class="grid">
  5. <!-- -->
  6. {% for page in section.pages %}
  7. <div class="cell">
  8. <a href="{{ page.permalink | safe }}"
  9. ><img src="{{ page.extra.image }}" width="400px"
  10. /></a>
  11. </div>
  12. <!-- -->
  13. <!-- -->
  14. {% endfor %}
  15. </div>
  16. <!-- <h1 class="title">{{ section.title }}</h1> -->
  17. <!-- <ul> -->
  18. <!-- If you are using pagination, section.pages will be empty.
  19. You need to use the paginator object -->
  20. <!-- {% for page in section.pages %} -->
  21. <!-- <li><a href="{{ page.permalink | safe }}">{{ page.title }}</a></li> -->
  22. <!-- {% endfor %} -->
  23. <!-- </ul> -->
  24. {% endblock content %}