2020-05-09 19:28:18 +03:00
|
|
|
{% comment %}
|
2020-06-03 17:49:28 +03:00
|
|
|
Get the last 5 posts from lastmod list.
|
2020-05-09 19:28:18 +03:00
|
|
|
{% endcomment %}
|
|
|
|
|
|
|
|
{% assign MAX_SIZE = 5 %}
|
2020-07-15 11:49:02 +03:00
|
|
|
|
|
|
|
{% assign all_list = "" | split: "" %}
|
2020-05-09 19:28:18 +03:00
|
|
|
|
2020-11-18 20:58:35 +03:00
|
|
|
{% for post in site.posts %}
|
2020-11-26 18:52:59 +03:00
|
|
|
{% if post.last_modified_at %}
|
2020-11-18 20:58:35 +03:00
|
|
|
{% capture elem %}
|
2020-11-26 18:52:59 +03:00
|
|
|
{{- post.last_modified_at | date: "%Y%m%d%H%M%S" -}}::{{- forloop.index0 -}}
|
2020-11-18 20:58:35 +03:00
|
|
|
{% endcapture %}
|
|
|
|
{% assign all_list = all_list | push: elem %}
|
|
|
|
{% endif %}
|
2020-05-09 19:28:18 +03:00
|
|
|
{% endfor %}
|
|
|
|
|
2020-07-15 11:49:02 +03:00
|
|
|
{% 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 16:48:57 +03:00
|
|
|
|
|
|
|
{% if update_list.size > 0 %}
|
|
|
|
|
|
|
|
<div id="access-lastmod" class="post">
|
2021-12-07 15:08:53 +03:00
|
|
|
<div class="panel-heading">{{- site.data.locales[lang].panel.lastmod -}}</div>
|
2021-12-01 16:48:57 +03:00
|
|
|
<ul class="post-content pl-0 pb-1 ml-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><a href="{{ url }}">{{ post.title }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div> <!-- #access-lastmod -->
|
|
|
|
|
|
|
|
{% endif %}
|