1
0
Fork 0
mirror of https://github.com/tylernguyen/wiki.git synced 2025-02-05 08:23:14 -06:00

style: change date format to YYYY-MM-DD

This commit is contained in:
Tyler Nguyen 2024-11-04 03:54:02 -06:00
parent 70f0156a4d
commit baf690f532
No known key found for this signature in database

View file

@ -13,11 +13,11 @@
<li class="md-meta__item"> <li class="md-meta__item">
<!-- SECTION Customization --> <!-- SECTION Customization -->
<time datetime="{{ post.config.date.created }}"> <time datetime="{{ post.config.date.created }}">
{{ post.config.date.created | date }} {{ post.config.date.created.strftime("%Y-%m-%d") }}
</time> </time>
{% if post.config.date.updated %} {% if post.config.date.updated %}
<time datetime="{{ post.config.date.updated }}"> <time datetime="{{ post.config.date.updated }}">
(Updated {{ post.config.date.updated | date }}) (Edited {{ post.config.date.updated.strftime("%Y-%m-%d") }})
</time> </time>
{% endif %} {% endif %}
<!-- !SECTION Customization --> <!-- !SECTION Customization -->