fix: link dates
This commit is contained in:
parent
fab884fbc3
commit
afc5a45a59
4 changed files with 5 additions and 5 deletions
|
@ -15,7 +15,7 @@ module.exports = async function () {
|
|||
return {
|
||||
title: link['title'],
|
||||
url: link['source_url'],
|
||||
time: link['published_date'],
|
||||
date: new Date(link['published_date']),
|
||||
summary: link['summary'],
|
||||
id: link['id'],
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<link href="{{ pkg.homepage }}/links.xml" rel="self" />
|
||||
<link href="{{ pkg.homepage }}/" />
|
||||
<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>
|
||||
<author>
|
||||
<name>{{ site.name }}</name>
|
||||
|
|
|
@ -13,7 +13,7 @@ permalink: '/links.json'
|
|||
"title": "{{ link.title | escape }}",
|
||||
"url": "{{ link.url }}",
|
||||
"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 %}
|
||||
{% endfor %}
|
||||
]
|
||||
|
|
|
@ -5,13 +5,13 @@ permalink: /links.xml
|
|||
{% layout "./_includes/feeds/links.liquid" %}
|
||||
{% block title %}Links • Cory Dransfeldt{% 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 %}
|
||||
{% for link in links %}
|
||||
<entry>
|
||||
<title>{{ link.title | escape }}</title>
|
||||
<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>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
|
|
Reference in a new issue