RSS feed merged to main branch #1
@ -5,6 +5,7 @@
|
||||
export let description;
|
||||
export let published;
|
||||
export let author;
|
||||
export let guid;
|
||||
const pubAgo = moment(published).fromNow();
|
||||
</script>
|
||||
|
||||
@ -19,4 +20,5 @@
|
||||
</div>
|
||||
<div>commited {pubAgo} by {@html author}</div>
|
||||
<a class="hover:text-slate-400 underline" href={link}>view commit</a>
|
||||
<div class="text-xs text-slate-400">guid:{guid}</div>
|
||||
</div>
|
||||
|
@ -22,7 +22,8 @@
|
||||
link: item.querySelector('link')?.textContent,
|
||||
description: item.querySelector('description')?.textContent,
|
||||
published: item.querySelector('pubDate')?.textContent,
|
||||
author: item.querySelector('author')?.textContent
|
||||
author: item.querySelector('author')?.textContent,
|
||||
guid: item.querySelector('guid')?.textContent
|
||||
}));
|
||||
feed = items;
|
||||
} catch (err) {
|
||||
|
Loading…
Reference in New Issue
Block a user