Files
driftywinds.github.io/js/news.js
foxster-mp4 660e88e360 Refactor
2023-04-30 00:33:30 -07:00

12 lines
374 B
JavaScript

insertNavigationBar("All News");
function main(json) {
// Set tab title
document.title = `News - ${json.name}`;
// Sort news by latest
json.news.sort((a, b) => (new Date(b.date)).valueOf() - (new Date(a.date)).valueOf());
// Create & insert news items
json.news.forEach(news => document.getElementById("news").insertAdjacentHTML("beforeend", newsItemHTML(news)));
}