Compare commits
No commits in common. "b2accdd1a39b2f0eeecd8583bd0402bb64420c94" and "950508cb54010088458b175806139d4e9714d3af" have entirely different histories.
b2accdd1a3
...
950508cb54
1 changed files with 3 additions and 3 deletions
|
@ -12,7 +12,7 @@ import sfjson from "../data/sharefeed.json";
|
||||||
import type { ShareFeedEntry } from "../lib/utils";
|
import type { ShareFeedEntry } from "../lib/utils";
|
||||||
|
|
||||||
const entries = sfjson.sharefeed
|
const entries = sfjson.sharefeed
|
||||||
.sort((a:ShareFeedEntry,b:ShareFeedEntry) => compareDesc(new Date(a.accessedDate), new Date(b.accessedDate)))
|
.sort((a:ShareFeedEntry,b:ShareFeedEntry) => compareDesc(new Date(a.date), new Date(b.date)))
|
||||||
.filter((entry: ShareFeedEntry) => !(entry.draft))
|
.filter((entry: ShareFeedEntry) => !(entry.draft))
|
||||||
|
|
||||||
---
|
---
|
||||||
|
@ -35,8 +35,8 @@ const entries = sfjson.sharefeed
|
||||||
</a>
|
</a>
|
||||||
<p class="text-sm text-subtitle">
|
<p class="text-sm text-subtitle">
|
||||||
<span class="italic">< {entry.url} ></span><br/>
|
<span class="italic">< {entry.url} ></span><br/>
|
||||||
{entry.publishedDate ? `originally published on ${format(entry.publishedDate, "LLLL d, yyyy")} - ` : ''}
|
{entry.pubDate ? `originally published on ${format(entry.pubDate, "LLLL d, yyyy")} - ` : ''}
|
||||||
retrieved {format(entry.accessedDate, "LLLL d, yyyy")}
|
retrieved {format(entry.date, "LLLL d, yyyy")}
|
||||||
</p>
|
</p>
|
||||||
<p>{entry.note}</p>
|
<p>{entry.note}</p>
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Add table
Reference in a new issue