Sha256: 8618824aa50d4d5f49f4d629157cac87623c2f9730da32fc13a0b9b9143b5093

Contents?: true

Size: 779 Bytes

Versions: 4

Compression:

Stored size: 779 Bytes

Contents

---
layout: default
title: "Post Archives"
---

{% 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

4 entries across 4 versions & 1 rubygems

Version Path
picklecore-1.1.0 _layouts/archive.html
picklecore-1.0.1 _layouts/archive.html
picklecore-1.0.0 _layouts/archive.html
picklecore-1.0.0.beta.1 _layouts/archive.html