Sha256: 31850e5479c6614a7a0d38ecca898bd53f4fcf04abf6af4eee8a165cf902e4a1

Contents?: true

Size: 1.15 KB

Versions: 39

Compression:

Stored size: 1.15 KB

Contents

<!-- Get 5 last posted/updated posts -->

{% assign MAX_SIZE = 5 %}

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

{% for post in site.posts %}
  {% assign datetime = post.last_modified_at | default: post.date %}

  {% capture elem %}
    {{- datetime | date: "%Y%m%d%H%M%S" -}}::{{- forloop.index0 -}}
  {% endcapture %}

  {% assign all_list = all_list | push: elem %}
{% 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 %}

{% if update_list.size > 0 %}
  <section id="access-lastmod">
    <h2 class="panel-heading">{{- site.data.locales[include.lang].panel.lastmod -}}</h2>
    <ul class="content list-unstyled ps-0 pb-1 ms-1 mt-2">
      {% for item in update_list %}
        {% assign index = item | split: '::' | last | plus: 0 %}
        {% assign post = site.posts[index] %}
        {% assign url = post.url | relative_url %}
        <li class="text-truncate lh-lg">
          <a href="{{ url }}">{{ post.title }}</a>
        </li>
      {% endfor %}
    </ul>
  </section>
  <!-- #access-lastmod -->
{% endif %}

Version data entries

39 entries across 39 versions & 4 rubygems

Version Path
jekyll-theme-chirpy-7.1.1 _includes/update-list.html
jekyll-theme-chirpy-7.1.0 _includes/update-list.html
Han-theme-1.0.0 _includes/update-list.html
jekyll-theme-chirpy-6.5.5 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-4.0.0 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-4.0.0.pre.beta2 _includes/update-list.html
doc-theme-0.1.0 _includes/update-list.html
jekyll-theme-chirpy-6.5.3 _includes/update-list.html
jekyll-theme-chirpy-6.5.2 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.2.0 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta3 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta2 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.2.0.pre.beta1 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.1.4 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.1.2 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.1.1 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.1.0 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.0.1 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-3.0.0 _includes/update-list.html
jekyll-theme-chirpy-customized-upe-1.0.2 _includes/update-list.html