home.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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 class="pinned-news">
  15. <strong>{{ bag('annonce', this.alt, 'message') }}</strong> <a href="{{ bag('annonce', this.alt, 'link') }}">{{ bag('annonce', this.alt, 'description') }}</a> <strong><a href="{{ bag('annonce', this.alt, 'link') }}">{{ bag('annonce', this.alt, 'readmore') }}</a></strong>
  16. </div>
  17. <div id="index">
  18. <h3>Blog</h3>
  19. {% for child in this.pagination.items %}
  20. {% if child._data._model == "posts" %}
  21. {% for blogpost in child.pagination.items %}
  22. <article>
  23. <h2><a href="{{ blogpost|url }}">{{ blogpost.title }}</a></h2>
  24. <p>{{ blogpost.excerpt|truncate(140) }}</p>
  25. </article>
  26. {% endfor %}
  27. {% endif %}
  28. {% endfor %}
  29. </div>
  30. {% endblock %}