Sha256: 33e0147f98ccad491477e9349ede61b59678062ed18cd9dcf8fa2c9484fc4be2
Contents?: true
Size: 843 Bytes
Versions: 3
Compression:
Stored size: 843 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 %} <ul class="list list--posts"> {% for page in site.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> {% endif %}
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
garth-jekyll-theme-0.5.0 | _includes/post-list.html |
garth-jekyll-theme-0.4.1 | _includes/post-list.html |
garth-jekyll-theme-0.4.0 | _includes/post-list.html |