index.html 414 B

123456789101112131415161718192021
  1. {% extends "base.html" %}
  2. <!-- -->
  3. {% block content %}
  4. <!-- -->
  5. {% set section = get_section(path="current/_index.md") %}
  6. <div class="grid">
  7. <!-- -->
  8. {% for page in section.pages %}
  9. <div class="cell">
  10. <a href="{{ page.permalink | safe }}"
  11. ><img src="{{ page.extra.image }}" width="400px"
  12. /></a>
  13. </div>
  14. <!-- -->
  15. {% endfor %}
  16. </div>
  17. {% endblock content %}