Resultado de santos 681944
-
San Justino
1 junio
-
Beato Juan Bautista Scalabrini
1 junio
-
San Félix de Nicosia
2 junio
-
SANTOS MARCELINO Y PEDRO, Mártires
2 junio
-
Solemnidad de la Ascensión del Señor
2 junio
-
SANTOS CARLOS LWANGA, JOSE MKASA y Sus Compañeros
3 junio
-
Beato Pacífico Ramati de Cerano
4 junio
-
SAN FRANCISCO CARACCIOLO
4 junio
-
SAN BONIFACIO, Arzobispo de Máinz, Mártir
5 junio
-
SAN MARCELINO CHAMPAGNAT
6 junio
-
San Norberto, Arzobispo de Magdeburgo, Fundador
6 junio
-
Beata Ana de San Bartolomé
7 junio
-
Beata María del Divino Corazón de Jesús
8 junio
-
SAN EFREN, Doctor de la Iglesia
9 junio
-
SAN JOSÉ DE ANCHIETA
9 junio
-
Beata Ana María Taigi (1769-1837)
9 junio
-
Fiesta de Pentecostés
9 junio
-
Beatos Tomás Green y Gualterio Pierson, Monjes
10 junio
-
SAN JUAN DOMINICI, Arzobispo de Ragusa y Cardenal
10 junio
-
SAN BERNABÉ, Apóstol
11 junio
`;
}
(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));
})();