chore: date formatting
This commit is contained in:
parent
d2a143f28f
commit
b2f2155682
5 changed files with 8 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
|||
const { DateTime } = require('luxon')
|
||||
|
||||
module.exports = {
|
||||
readableDate: (date) => {
|
||||
return DateTime.fromISO(date).toFormat('LLLL d, yyyy')
|
||||
},
|
||||
dateForFeed: (date) => {
|
||||
return new Date(date).toISOString()
|
||||
},
|
||||
|
|
|
@ -97,8 +97,9 @@ layout: main
|
|||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||
{% for album in albumReleases %}
|
||||
<li class="mt-1.5 mb-2">
|
||||
<span class="font-bold">{{ album.startDate | readableDate }}: </span>
|
||||
<a href="https://{{album.location}}" title="{{album.summary | escape}}">
|
||||
{{ album.startDate | date: "%m.%d.%Y" }}: {{album.summary}}
|
||||
{{album.summary}}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
|
|
|
@ -5,7 +5,7 @@ layout: main
|
|||
<article class="h-entry">
|
||||
<h2 class="p-name text-xl md:text-2xl font-black leading-tight dark:text-gray-200 pt-12">{{ title }}</h2>
|
||||
<span class="p-author h-card hidden">{{ site.title }}</span>
|
||||
<time class="mt-2 mb-6 block text-sm dt-published" datetime="{{ date }}">{{ date | date: "%m.%d.%Y" }}</time>
|
||||
<time class="mt-2 mb-6 block text-sm dt-published" datetime="{{ date }}">{{ date | readableDate }}</time>
|
||||
<div class="p-summary hidden">{{ post_excerpt | markdown }}</div>
|
||||
<div class="e-content prose dark:prose-invert hover:prose-a:text-blue-500 max-w-full text-gray-800 dark:text-white">
|
||||
{{ content }}
|
||||
|
|
|
@ -37,7 +37,7 @@ meta:
|
|||
<span class="p-author h-card hidden">{{ site.title }}</span>
|
||||
<div class="my-2 text-sm">
|
||||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%m.%d.%Y" }}
|
||||
{{ post.date | date: "%m.%Y" }}
|
||||
</time>
|
||||
</div>
|
||||
<p class="p-summary mt-0">{{ post.data.post_excerpt | markdown }}</p>
|
||||
|
|
|
@ -21,7 +21,7 @@ templateEngineOverride: liquid,md
|
|||
</a>
|
||||
<div class="my-2 text-sm">
|
||||
<time class="dt-published" datetime="{{ post.date }}">
|
||||
{{ post.date | date: "%m.%d.%Y" }}
|
||||
{{ post.date | date: "%m.%Y" }}
|
||||
</time>
|
||||
</div>
|
||||
{% if post.data.post_excerpt %}
|
||||
|
|
Reference in a new issue