📝 ラベルなし記事一覧
ラベルがまだ付いていない記事を自動で表示しています。
記事タイトルをタップすると、その記事を確認できます。
記事を確認しています…♨️
(function () {
var blogUrl = ‘https://yuruyu-cozy.blogspot.com’;
var feedUrl = blogUrl + ‘/feeds/posts/default?alt=json&max-results=500’;
fetch(feedUrl)
.then(function(response) {
return response.json();
})
.then(function(data) {
var entries = data.feed.entry || [];
var unlabeled = [];
entries.forEach(function(entry) {
var categories = entry.category || [];
/* ラベルが1つもない記事だけ取得 */
if (categories.length === 0) {
var title = entry.title.$t;
var url = ”;
entry.link.forEach(function(link) {
if (link.rel === ‘alternate’) {
url = link.href;
}
});
unlabeled.push({
title: title,
url: url
});
}
});
var html = ”;
if (unlabeled.length > 0) {
html += ‘
ラベルなしの記事:’
+ unlabeled.length
+ ‘件
‘;
html += ‘
- ‘;
- ‘;
html += ‘‘;
html += post.title;
html += ‘‘;
html += ‘
unlabeled.forEach(function(post) {
html += ‘
‘;
});
html += ‘
‘;
} else {
html =
‘
🎉 ラベルが付いていない記事はありませんでした!
‘;
}
document.getElementById(‘coz-unlabeled-list’).innerHTML = html;
})
.catch(function() {
document.getElementById(‘coz-unlabeled-list’).innerHTML =
‘
記事を読み込めませんでした。
‘;
});
})();