Skip to content

Commit a31cf5b

Browse files
author
Mabrur Habib
committed
modified: index.md
1 parent d888914 commit a31cf5b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

index.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ title: Home
130130
async function fetchRSSFeeds() {
131131
const feeds = [
132132
{ url: 'https://medium.com/feed/@bibib', source: 'Medium' },
133-
{ url: 'https://nbsc7.wordpress.com/feed', source: 'WordPress' }
133+
{ url: 'https://nbsc7.wordpress.com/feed', source: 'WordPress' },
134+
{ url: 'https://kumelsnote.blogspot.com/feeds/posts/default?alt=rss', source: 'Blogspot' }
134135
];
135136

136137
for (const feed of feeds) {
@@ -178,7 +179,7 @@ title: Home
178179
itemsToShow.forEach(item => {
179180
const feedItem = document.createElement('div');
180181
feedItem.innerHTML = `
181-
<h3>${item.pubDate.toLocaleDateString()} | <a href="${item.link}" target="_blank">${item.title}</a></h3>
182+
<h3>${item.pubDate.toLocaleDateString()} ${item.source} | <a href="${item.link}" target="_blank">${item.title}</a></h3>
182183
`;
183184
feedContainer.appendChild(feedItem);
184185
});

0 commit comments

Comments
 (0)