Sha256: 0d691db7bf5490efe5557f811ca9f2712450b5c010b4c5e761596bd0699af21f

Contents?: true

Size: 914 Bytes

Versions: 5

Compression:

Stored size: 914 Bytes

Contents

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

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

{% assign archive_date_titleformat = site.theme_config.archive_title_date_format | default: "%m-%d" %} 

<ul class="postlistul">
{%- for post in posts limit: include.limit -%}
    {% assign  ymCur = post.date | date: archive_date_format %}  
    {% if ymCur != ymPre %}
        {% if ymPre != "" %}
             </ul>
        {% endif %}
      <li class="postlistli"><h2>{{ymCur}}</h2></li> 
      <ul class="postlistul">
    {% endif %}
    {% assign ymPre = ymCur %}
    
    <li class="postlistli">
          <a href="{{ post.url | relative_url }}">{{ post.title | downcase }}</a>
          <date datetime="{{post.date}}">{{- post.date | date: archive_date_titleformat }}</date>
    </li>

{%- endfor -%}
</ul>
{%- endif -%}

 

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jekyll-zeta-0.3.2.2 _includes/archive_list.html
jekyll-zeta-0.3.2.1 _includes/archive_list.html
jekyll-zeta-0.3.2 _includes/archive_list.html
jekyll-zeta-0.3.1 _includes/archive_list.html
jekyll-zeta-0.3.0 _includes/archive_list.html