You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
804B

  1. {% extends "index.html" %}
  2. {% block extra_nav_class %}{% endblock extra_nav_class %}
  3. {% block extra_content_class %}content--reversed{% endblock extra_content_class %}
  4. {% block title %}Themes | {{ super() }} {% endblock title %}
  5. {% block content %}
  6. <div class="themes-container">
  7. {% block theme_content %}
  8. <h1>Zola themes</h1>
  9. <div class="themes">
  10. {% for theme in section.pages %}
  11. <a class="theme" href="{{theme.permalink}}">
  12. <img src="{{theme.permalink}}screenshot.png" alt="Screenshot of {{theme.title}}">
  13. <span>{{theme.title}}</span>
  14. </a>
  15. {% endfor %}
  16. </div>
  17. {% endblock theme_content %}
  18. </div>
  19. {% endblock content %}