home.html 891 B

123456789101112131415161718192021222324252627282930
  1. {% extends "layout.html" %}
  2. {% from "macros/blog.html" import render_blog_post %}
  3. {% from "macros/pagination.html" import render_pagination %}
  4. {% block title %}{{ this.title }}{% endblock %}
  5. {% block body_class %}home{% endblock %}
  6. {% block banner %}
  7. <div class="image-wrap">
  8. <img src=
  9. "{{ '/static/images/banner.png'|url }}"
  10. alt=" feature image">
  11. </div><!-- /.image-wrap -->
  12. {% endblock %}
  13. {% block body %}
  14. <div id="index">
  15. <h3>Blog</h3>
  16. {% for child in this.pagination.items %}
  17. {% if child._data._model == "posts" %}
  18. {% for blogpost in child.pagination.items %}
  19. <article>
  20. <h2><a href="{{ blogpost|url }}">{{ blogpost.title }}</a></h2>
  21. <p>{{ blogpost.excerpt|truncate(140) }}</p>
  22. </article>
  23. {% endfor %}
  24. {% endif %}
  25. {% endfor %}
  26. </div>
  27. {% endblock %}