krata/_includes/update-list.html

41 lines
1.2 KiB
HTML
Raw Permalink Normal View History

<!-- Get 5 last posted/updated posts -->
2020-05-09 18:28:18 +02:00
{% assign MAX_SIZE = 5 %}
{% assign all_list = '' | split: '' %}
2020-05-09 18:28:18 +02:00
{% 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 %}
2020-05-09 18:28:18 +02:00
{% 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 %}
2021-12-01 14:48:57 +01:00
{% 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">
2021-12-01 14:48:57 +01:00
{% for item in update_list %}
{% assign index = item | split: '::' | last | plus: 0 %}
2021-12-01 14:48:57 +01:00
{% assign post = site.posts[index] %}
{% assign url = post.url | relative_url %}
<li class="text-truncate lh-lg">
<a href="{{ url }}">{{ post.title }}</a>
</li>
2021-12-01 14:48:57 +01:00
{% endfor %}
</ul>
</section>
<!-- #access-lastmod -->
2021-12-01 14:48:57 +01:00
{% endif %}