1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 05:41:31 +00:00

feat: support hiding the modification date of a post (#1020)

There is the current ability to set `last_modified_at` in the front matter of post and use that datetime instead of the built in logic.
New feature in post.html:  if the modified date time matches the date of the post, then don't show "Updated xxxx"
This commit is contained in:
Darian Miller
2023-05-05 21:35:01 -05:00
committed by Cotes Chung
parent 61fdbcb83a
commit 8da583d403
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
{% assign all_list = '' | split: '' %}
{% for post in site.posts %}
{% if post.last_modified_at %}
{% if post.last_modified_at and post.last_modified_at != post.date %}
{% capture elem %}
{{- post.last_modified_at | date: "%Y%m%d%H%M%S" -}}::{{- forloop.index0 -}}
{% endcapture %}