BareGit
for(const node of document.querySelectorAll(".local-time"))
{
    const seconds = Number(node.dataset.unix);
    node.textContent = new Intl.DateTimeFormat(undefined, {
        dateStyle: "medium",
        timeStyle: "short",
        timeZoneName: "short",
    }).format(new Date(seconds * 1000));
}