lists.html (758B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
{% macro list_pages() %} {%- if paginator -%} <section class="posts"> {%- for page in paginator.pages -%} <div class="post"> <header> <h1 class="post-title"> <a href="{{ page.permalink }}">{{ page.title }}</a> </h1> </header> {{ posts::meta(page=page) }} <div class="post-content post-in-list"> {% if page.description -%} {{ page.description }} {% elif page.summary -%} {{ page.summary | safe }} {% endif -%} </div> {% if page.description or page.summary -%} <div> <i ><a class="read-more button" href="{{ page.permalink }}" >Read More -></a ></i > </div> {% endif -%} </div> {%- endfor -%} </section> {%- endif -%} {% endmacro list_pages %}