Sha256: 02a411bc25dc6aeeb02c252a09977b1deb051373e619c13dfac8d6f7cd214806

Contents?: true

Size: 1.19 KB

Versions: 8

Compression:

Stored size: 1.19 KB

Contents

---
layout: default
title: Home
---

<div class="posts">
  {% for post in paginator.posts %}
  <div class="post">
    <h1 class="post-title">
      <a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}">
        {{ post.title }}
      </a>
    </h1>

    <span class="post-date">{{ post.date | date_to_string }}</span>

    <p>
      {{ post.excerpt }}
    </p>
    <p>
      <a href="{{ post.url | prepend: site.baseurl | prepend: site.url }}" title="{{ post.title }}">
        Read More
      </a>
    </p>
  </div>
  {% endfor %}
</div>

<div class="pagination">
  {% if paginator.next_page %}
    <a class="pagination-item older" href="{{ site.baseurl | prepend: site.url }}page{{paginator.next_page}}">Older</a>
  {% else %}
    <span class="pagination-item older">Older</span>
  {% endif %}
  {% if paginator.previous_page %}
    {% if paginator.page == 2 %}
      <a class="pagination-item newer" href="{{ site.baseurl | prepend: site.url }}">Newer</a>
    {% else %}
      <a class="pagination-item newer" href="{{ site.baseurl | prepend: site.url }}page{{paginator.previous_page}}">Newer</a>
    {% endif %}
  {% else %}
    <span class="pagination-item newer">Newer</span>
  {% endif %}
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
jekyll-minifier-0.1.10 spec/fixtures/index.html
jekyll-minifier-0.1.9 spec/fixtures/index.html
jekyll-minifier-0.1.8 spec/fixtures/index.html
jekyll-minifier-0.1.6 spec/fixtures/index.html
jekyll-minifier-0.1.5 spec/fixtures/index.html
jekyll-minifier-0.1.4 spec/fixtures/index.html
jekyll-minifier-0.1.3 spec/fixtures/index.html
jekyll-minifier-0.1.2 spec/fixtures/index.html