Sha256: 0881344d0f7381d774b4bab8695b8ba3630e6aa2714fbad81b837bc7515efa35
Contents?: true
Size: 1 KB
Versions: 16
Compression:
Stored size: 1 KB
Contents
{% if paginator.posts %} <section class="section typeset"> <ul class="list list--posts"> {% for page in paginator.posts %} <li class="item item--post"> <article class="article article--post"> <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2> {% include post-meta.html %} {{ page.excerpt | markdownify | truncatewords: 60 }} </article> </li> {% endfor %} </ul> {% include post-pagination.html %} </section> {% else %} <section class="section typeset"> <ul class="list list--posts"> {% for page in site.posts %} <li class="item item--post"> <article class="article article--post"> <h2><a href="{{ site.baseurl }}{{ page.url }}">{{ page.title }}</a></h2> {% include post-meta.html %} {{ page.excerpt | markdownify | truncatewords: 60 }} </article> </li> {% endfor %} </ul> </section> {% endif %}
Version data entries
16 entries across 16 versions & 1 rubygems