[mod] Titel der Website

This commit is contained in:
fenris 2025-10-22 16:10:39 +02:00
parent 56658aa7f6
commit a08bd73e9d

View file

@ -130,8 +130,16 @@ async function main(
);
// set title
document.querySelector("header > h1").textContent = _zackeneule.conf.get().settings.title;
document.querySelector("title").textContent = _zackeneule.conf.get().settings.title;
{
const title : string = lib_plankton.string.coin(
"Espe | {{conf_title}}",
{
"conf_title": _zackeneule.conf.get().settings.title,
}
);
document.querySelector("header > h1").textContent = title;
document.querySelector("title").textContent = title;
}
setup_nav();