fix: link dates

This commit is contained in:
Cory Dransfeldt 2023-07-14 16:24:11 -07:00
parent fab884fbc3
commit afc5a45a59
No known key found for this signature in database
4 changed files with 5 additions and 5 deletions

View file

@ -15,7 +15,7 @@ module.exports = async function () {
return { return {
title: link['title'], title: link['title'],
url: link['source_url'], url: link['source_url'],
time: link['published_date'], date: new Date(link['published_date']),
summary: link['summary'], summary: link['summary'],
id: link['id'], id: link['id'],
} }

View file

@ -7,7 +7,7 @@
<link href="{{ pkg.homepage }}/links.xml" rel="self" /> <link href="{{ pkg.homepage }}/links.xml" rel="self" />
<link href="{{ pkg.homepage }}/" /> <link href="{{ pkg.homepage }}/" />
<link rel="hub" href="https://pubsubhubbub.superfeedr.com/" /> <link rel="hub" href="https://pubsubhubbub.superfeedr.com/" />
<updated>{% block update %}{{ links[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated> <updated>{% block update %}{{ links[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}</updated>
<id>{{ site.url }}</id> <id>{{ site.url }}</id>
<author> <author>
<name>{{ site.name }}</name> <name>{{ site.name }}</name>

View file

@ -13,7 +13,7 @@ permalink: '/links.json'
"title": "{{ link.title | escape }}", "title": "{{ link.title | escape }}",
"url": "{{ link.url }}", "url": "{{ link.url }}",
"content_text": "{{ link.summary | escape }}", "content_text": "{{ link.summary | escape }}",
"date_published": "{{ link.time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}" "date_published": "{{ link.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}
] ]

View file

@ -5,13 +5,13 @@ permalink: /links.xml
{% layout "./_includes/feeds/links.liquid" %} {% layout "./_includes/feeds/links.liquid" %}
{% block title %}Links • Cory Dransfeldt{% endblock %} {% block title %}Links • Cory Dransfeldt{% endblock %}
{% block self %}links.xml{% endblock %} {% block self %}links.xml{% endblock %}
{% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %} {% block update %}{{ link[0].date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
{% block entries %} {% block entries %}
{% for link in links %} {% for link in links %}
<entry> <entry>
<title>{{ link.title | escape }}</title> <title>{{ link.title | escape }}</title>
<link href="{{link.link}}" /> <link href="{{link.link}}" />
<updated>{{ link.time | date: "%m.%d.%Y" }}</updated> <updated>{{ link.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}</updated>
<id>{{ link.url }}</id> <id>{{ link.url }}</id>
<content type="html"></content> <content type="html"></content>
</entry> </entry>