Archivo de noticias 9o6b
junio 2025 5y3d2b
Dom |
Lun |
Mar |
Mie |
Jue |
Vie |
Sab |
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
|
|
|
|
|
|
mayo 2025 2lu52
`;
}
(function() {
const latest_news_url = '/latest-stories-api';
var latestNewsList = document.getElementById('latestnews');
fetch(latest_news_url).then(result => {
var latestnews = result.json();
latestnews.then(data => {
latestNewsList.innerHTML = '';
data.slice(0, 5).forEach((item, i) => latestNewsList.innerHTML += renderlatestnews(item.url, item.image, item.caption, item.title));
});
}).catch(err => console.error(err));
})();
${title} 4ce1a
`;
}
(function() {
const most_read_url = '/most-read-api';
var historyList = document.getElementById("mostread");
fetch(most_read_url).then(result => {
var json_result = result.json();
json_result.then(data => {
historyList.innerHTML = "";
data.slice(0, 5).forEach((item, i) => historyList.innerHTML += render(item.url, item.featured_image.data_transformed, item.featured_image.caption, item.title));
});
}).catch(err => console.error(err));
})();