Sha256: 0fecdc73f160f41728db095957e1a0ab6116b85f647a2bd3b3335396df1e38fc
Contents?: true
Size: 879 Bytes
Versions: 21
Compression:
Stored size: 879 Bytes
Contents
{% if paginator.posts %} <ul class="list list--posts"> {% for page in paginator.posts %} <li class="item item--post"> <article class="article article--post typeset"> <h2><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h2> {% include post-meta.html %} {{ page.excerpt | markdownify | truncatewords: 60 }} </article> </li> {% endfor %} </ul> {% include post-pagination.html %} {% else %} <h2>Latest blog posts</h2> <ul class="list list--posts"> {% for page in site.posts limit: 4 %} <li class="item item--post"> <article class="article article--post typeset"> <h5><a href="{{ page.url }}" title="{{ page.title }}">{{ page.title }}</a></h5> {% include post-meta.html %} {{ page.excerpt | markdownify | truncatewords: 60 }} </article> </li> {% endfor %} </ul> {% endif %}
Version data entries
21 entries across 21 versions & 1 rubygems