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
No known key found for this signature in database
GPG Key ID: 0D9E54843167A808
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 %}

View File

@ -21,7 +21,7 @@ tail_includes:
</span>
<!-- lastmod date -->
{% if page.last_modified_at %}
{% if page.last_modified_at and page.last_modified_at != page.date %}
<span>
{{ site.data.locales[lang].post.updated }}
{% include datetime.html date=page.last_modified_at tooltip=true lang=lang %}