Sha256: 55b5e420369984ced1799a25ca68d6b0d394e4ff60fa1a151802cacb16e5e19c

Contents?: true

Size: 613 Bytes

Versions: 22

Compression:

Stored size: 613 Bytes

Contents

{% comment %}
  Get the last 5 posts from lastmod list.
{% endcomment %}

{% assign MAX_SIZE = 5 %}

{% assign all_list = "" | split: "" %}

{% for post in site.posts %}
  {% if post.last_modified_at %}
    {% capture elem %}
      {{- post.last_modified_at | date: "%Y%m%d%H%M%S" -}}::{{- forloop.index0 -}}
    {% endcapture %}
    {% assign all_list = all_list | push: elem %}
  {% endif %}
{% endfor %}

{% assign all_list = all_list | sort | reverse %}

{% assign update_list = "" | split: "" %}

{% for entry in all_list limit:MAX_SIZE %}
  {% assign update_list = update_list | push: entry %}
{% endfor %}

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
jekyll-theme-chirpy-4.3.4 _includes/update-list.html
jekyll-theme-chirpy-4.3.3 _includes/update-list.html
jekyll-theme-chirpy-4.3.2 _includes/update-list.html
jekyll-theme-chirpy-4.3.1 _includes/update-list.html
jekyll-theme-chirpy-4.3.0 _includes/update-list.html
jekyll-theme-chirpy-4.2.1 _includes/update-list.html
jekyll-theme-chirpy-4.2.0 _includes/update-list.html
jekyll-theme-chirpy-4.1.1 _includes/update-list.html
jekyll-theme-chirpy-4.1.0 _includes/update-list.html
jekyll-theme-chirpy-4.0.2 _includes/update-list.html
jekyll-theme-chirpy-4.0.1 _includes/update-list.html
jekyll-theme-chirpy-3.3.2 _includes/update-list.html
jekyll-theme-chirpy-3.3.1 _includes/update-list.html
jekyll-theme-chirpy-3.3.0 _includes/update-list.html
jekyll-theme-chirpy-3.2.2 _includes/update-list.html
jekyll-theme-chirpy-3.2.1 _includes/update-list.html
jekyll-theme-chirpy-3.2.0 _includes/update-list.html
jekyll-theme-chirpy-3.1.1 _includes/update-list.html
jekyll-theme-chirpy-3.1.0 _includes/update-list.html
jekyll-theme-chirpy-3.0.3 _includes/update-list.html