Sha256: 2c2f0d16b64c0ba1d5984b6f306aaf9b87fbfce5d134593d4368f997f55ccc3a
Contents?: true
Size: 954 Bytes
Versions: 2
Compression:
Stored size: 954 Bytes
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="{{ page.url }}" title="Post - {{ page.title }}">{{ 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="{{ page.url }}" title="Post - {{ page.title }}">{{ page.title }}</a></h2> {% include post-meta.html %} {{ page.excerpt | markdownify | truncatewords: 60 }} </article> </li> {% endfor %} </ul> </section> {% endif %}
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alembic-jekyll-theme-2.0.3 | _includes/post-list.html |
alembic-jekyll-theme-2.0.2 | _includes/post-list.html |