Sha256: 0c5fb1e8aeb414eda378a378190afa31c362bf6bb57af05f7f0b8e17425734de

Contents?: true

Size: 830 Bytes

Versions: 10

Compression:

Stored size: 830 Bytes

Contents

---
layout: default
title: "Post Archives"
---
{% include components/binds/sidebar-anchor.html %}

{% if page.type == "year" %}
    <h1>Posts from {{ page.date | date: "%Y" }}</h1>
{% endif %}
{% if page.type == "month" %}
    <h1>Posts from {{ page.date | date: "%-d, %Y" }}</h1>
{% endif %}
{% if page.type == "day" %}
    <h1>Posts from {{ page.date | date: "%b %-d, %Y" }}</h1>
{% endif %}
{% if page.type == "tag" or page.type == "category" %}
    <h1>Posts with {{ page.type }} '{{ page.title }}'</h1>
{% endif %}

<ul class="posts">
    {% for post in page.posts %}
        <li>
            <span class="post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
            <span>-</span>
            <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
        </li>
    {% endfor %}
</ul>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
picklecore-0.15.5 _layouts/archive.html
picklecore-0.15.4 _layouts/archive.html
picklecore-0.15.3 _layouts/archive.html
picklecore-0.15.2 _layouts/archive.html
picklecore-0.15.1 _layouts/archive.html
picklecore-0.15.0 _layouts/archive.html
picklecore-0.14.0 _layouts/archive.html
picklecore-0.13.0 _layouts/archive.html
picklecore-0.12.1 _layouts/archive.html
picklecore-0.12.0 _layouts/archive.html