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

Version Path
alembic-jekyll-theme-4.1.0 _includes/post-list.html
alembic-jekyll-theme-4.0.0 _includes/post-list.html
alembic-jekyll-theme-3.1.0 _includes/post-list.html
alembic-jekyll-theme-3.0.14 _includes/post-list.html
alembic-jekyll-theme-3.0.13 _includes/post-list.html
alembic-jekyll-theme-3.0.12 _includes/post-list.html
alembic-jekyll-theme-3.0.11 _includes/post-list.html
alembic-jekyll-theme-3.0.10 _includes/post-list.html
alembic-jekyll-theme-3.0.9 _includes/post-list.html
alembic-jekyll-theme-3.0.8 _includes/post-list.html
alembic-jekyll-theme-3.0.7 _includes/post-list.html
alembic-jekyll-theme-3.0.6 _includes/post-list.html
alembic-jekyll-theme-3.0.5 _includes/post-list.html
alembic-jekyll-theme-3.0.4 _includes/post-list.html
alembic-jekyll-theme-3.0.3 _includes/post-list.html
alembic-jekyll-theme-3.0.2 _includes/post-list.html