1234567891011121314151617181920212223242526272829303132333435 |
- {% extends "layout.html" %}
- {% from "macros/blog.html" import render_blog_post %}
- {% from "macros/pagination.html" import render_pagination %}
- {% block title %}{{ this.title }}{% endblock %}
- {% block body_class %}home{% endblock %}
- {% block banner %}
- <div class="image-wrap">
- <img src=
- "{{ '/static/images/banner.png'|url }}"
- alt=" feature image">
- </div><!-- /.image-wrap -->
- {% endblock %}
- {% block body %}
- <div class="pinned-news">
- <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>
- </div>
- <div id="index">
- <h3>Blog</h3>
- {% for child in this.pagination.items %}
- {% if child._data._model == "posts" %}
- {% for blogpost in child.pagination.items %}
- <article>
- <h2><a href="{{ blogpost|url }}">{{ blogpost.title }}</a></h2>
- <p>{{ blogpost.excerpt|truncate(140) }}</p>
- </article>
- {% endfor %}
- {% endif %}
- {% endfor %}
- </div>
- {% endblock %}
|