fix: articles de-linked pending a readwise api update
This commit is contained in:
parent
0df06e4ab3
commit
d03bbc0867
3 changed files with 7 additions and 6 deletions
|
@ -2,7 +2,7 @@ module.exports = async function () {
|
||||||
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
const { ActivityFeed } = await import('@11ty/eleventy-activity-feed')
|
||||||
const feed = new ActivityFeed()
|
const feed = new ActivityFeed()
|
||||||
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
|
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
|
||||||
feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
|
// feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
|
||||||
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
||||||
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
|
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
|
||||||
const entries = feed.getEntries().catch()
|
const entries = feed.getEntries().catch()
|
||||||
|
|
|
@ -113,15 +113,16 @@ layout: main
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if articles %}
|
{% if articles %}
|
||||||
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
|
<h2 class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-6 mb-4">
|
||||||
Reading: favorite articles
|
Reading: shortlisted articles
|
||||||
</h2>
|
</h2>
|
||||||
<div>
|
<div>
|
||||||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||||
{% for article in articles | reverse %}
|
{% for article in articles | reverse %}
|
||||||
<li class="mt-1.5 mb-2">
|
<li class="mt-1.5 mb-2">
|
||||||
<a href="{{article.url}}" title="{{article.title | escape}}">
|
{% comment %}<a href="{{article.url}}" title="{{article.title | escape}}">{% endcomment %}
|
||||||
{{ article.title | escape }}
|
{% comment %}{{ article.title | escape }}{% endcomment %}
|
||||||
</a>
|
{% comment %}</a>{% endcomment %}
|
||||||
|
{{ article.title | escape }} by {{ article.author }}
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -10,7 +10,7 @@ module.exports = class {
|
||||||
const feed = new ActivityFeed()
|
const feed = new ActivityFeed()
|
||||||
|
|
||||||
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
|
feed.addSource('atom', '📝', 'https://coryd.dev/feed.xml')
|
||||||
feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
|
// feed.addSource('atom', '🔗', 'https://coryd.dev/links.xml')
|
||||||
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss')
|
||||||
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
|
feed.addSource('rss', '📖', 'https://oku.club/rss/collection/NvEmF')
|
||||||
|
|
||||||
|
|
Reference in a new issue