Santos: letra E 4dj3a
-
SANTA EDITH STEIN, Mártir
9 agosto
-
SAN EDUARDO
13 octubre
-
SANTA EDUVIGES, Viuda
16 octubre
-
SAN EFREN, Doctor de la Iglesia
9 junio
-
Santa Elena
18 agosto
-
SAN EMIGDIO, Mártir
9 agosto
-
San Emiliano
11 septiembre
-
SAN ENGELBERTO, Arzobispo de Colonia, Mártir
7 noviembre
-
SANTA ENGRACIA, Virgen y Mártir
16 abril
-
Enrique de Ossó (1840-1896)
27 enero
-
BEATO ENRIQUE SUSSO
28 marzo
-
San Enrique
13 julio
-
SAN EPAFRODITO, Obispo
22 marzo
-
SANTA ESCOLÁSTICA, Virgen
10 febrero
-
SAN ESTANISLAO DE KOSTKA, Seminarista
13 agosto
-
SAN ESTANISLAO, Obispo de Cracovia y Mártir
11 abril
-
San Esteban de Hungría
16 agosto
-
San Esteban de Zudaire
30 agosto
-
SAN ESTEBAN, Protomártir
26 diciembre
-
SAN ETELBERTO DE KENT
24 febrero
`;
}
(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));
})();