Sha256: 4d0ad7a3154df03261df821a36f3c622a4713d9523b491f4376d4ed6e0efbfd6

Contents?: true

Size: 834 Bytes

Versions: 1

Compression:

Stored size: 834 Bytes

Contents

---
layout: default
---

{%-include back_link.html-%}

<h1>{{ page.title }}</h1>


{%-assign posts = site.posts-%}
{%- if posts.size > 0 -%}

{% assign ymPre = "" %}
{% capture archive_date_format %} {{ site.theme_config.archive_date_format | default: "%Y"}}{% endcapture %}

{% capture archive_date_titleformat %} {{ site.theme_config.archive_title_date_format | default: "%m-%d"}}{% endcapture %}
{%- for post in posts limit: include.limit -%}
    {% capture  ymCur %} {{post.date | date: archive_date_format}} {% endcapture %}
    {% if ymCur != ymPre %}
        <h2>{{ymCur}}</h2>
    {% endif %}
    {% assign ymPre = ymCur %}
    <li>
          <span>{{- post.date | date: archive_date_titleformat }}</span>
          <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
    </li>
{%- endfor -%}
{%- endif -%}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
no-style-please2-0.7.4.5 _layouts/archive.html