chore: readwise -> pinboard etc
This commit is contained in:
parent
ada4e21a71
commit
58da474ee0
8 changed files with 30 additions and 30 deletions
|
@ -5,18 +5,16 @@ permalink: /links.xml
|
|||
{% layout "./_includes/feed-links.liquid" %}
|
||||
{% block title %}Links • Cory Dransfeldt{% endblock %}
|
||||
{% block self %}links.xml{% endblock %}
|
||||
{% block update %}{{ articles[0].created_at | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
|
||||
{% block update %}{{ articles[0].time | date: "%Y-%m-%dT%H:%M:%S-08:00" }}{% endblock %}
|
||||
{% block entries %}
|
||||
{% assign links = articles | reverse %}
|
||||
{% for link in links %}
|
||||
<entry>
|
||||
<title>{{ link.title | escape }}</title>
|
||||
<link href="{{link.url}}" />
|
||||
<updated>{{ link.created_at | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ link.url }}</id>
|
||||
<content type="html">
|
||||
{{ link.summary | escape }}
|
||||
</content>
|
||||
<title>{{ link.description | escape }}</title>
|
||||
<link href="{{link.href}}" />
|
||||
<updated>{{ link.time | date: "%m.%d.%Y" }}</updated>
|
||||
<id>{{ link.href }}</id>
|
||||
<content type="html"></content>
|
||||
</entry>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
|
Reference in a new issue