âś… Link Download Terverifikasi
Harap tunggu 5 detik untuk proses verifikasi…
// Fungsi untuk mengambil artikel terkait dari Blogger
function loadRelatedPosts() {
const blogUrl = 'https://kukuhsuprayogi.com';
const label = 'crypto';
const numPosts = 3;
fetch(`${blogUrl}/feeds/posts/default?alt=json&max-results=${numPosts}${label ? '&category=' + label : ''}`)
.then(response => response.json())
.then(data => {
const posts = data.feed.entry || [];
let html = '';
posts.forEach(post => {
const postUrl = post.link.find(link => link.rel === 'alternate').href;
const postTitle = post.title.$t;
const postSnippet = post.content.$t.substring(0, 100) + '...';
html += `
`;
});
document.getElementById('relatedArticles').innerHTML = html || '
Tidak ada artikel terkait.
';
});
}
// Timer redirect
let seconds = 5;
const timer = setInterval(() => {
seconds-5-;
if (seconds <= 0) { clearInterval(timer); document.getElementById('redirectBtn').style.display = 'block'; } }, 1000); window.onload = loadRelatedPosts;