Sha256: 93b06efedcfef93228f01257bb010bd81a23c633861a9c7144dc999bba24acab

Contents?: true

Size: 991 Bytes

Versions: 4

Compression:

Stored size: 991 Bytes

Contents

{%- if site.paginate -%}

{%- assign posts = paginator.posts -%}

{%- else -%}

{%- assign posts = site.posts -%}

{%- endif -%}

{%- if posts.size > 0 -%}

{%- assign date_format = site.date_format -%}

<section id="post-listing">
  <header id="post-listing-header">
    <h2 id="post-listing-heading">

      {{- posts.list_title | default: "Posts" -}}

    </h2> <!-- #post-listing-heading -->
  </header> <!-- #post-listing-header -->
  <ul class="post-list">

    {%- for post in posts -%}

    <li class="post-item">
      <span class="post-meta">

        {{- post.date | date: date_format -}}

      </span>
      <a class="post-link" href="{{ post.url | relative_url }}">
        {{ post.title | escape }}
      </a>

      {%- if site.show_excerpts -%}

      <div class="post-excerpt">

        {{- post.excerpt -}}

      </div>

      {%- endif -%}


    </li> <!-- .post-item -->

    {%- endfor -%}

  </ul> <!-- .post-list -->
</section> <!-- #post-listing -->

{%- endif -%}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
jekyll-theme-simpleton-0.9.0 _includes/post-listing.html
jekyll-theme-simpleton-0.8.0 _includes/post-listing.html
jekyll-theme-simpleton-0.7.0 _includes/post-listing.html
jekyll-theme-simpleton-0.6.0 _includes/post-listing.html