changed: page title

This commit is contained in:
quenousimporte 2024-01-22 14:57:34 +01:00
parent 872b9492db
commit 34df500cbc
1 changed files with 5 additions and 1 deletions

View File

@ -23,7 +23,11 @@
?> ?>
<html> <html>
<header>
<title>Evénements à venir</title>
</header>
<body style="font-family: helvetica;"> <body style="font-family: helvetica;">
<div id="content"></div>
<script type="text/javascript"> <script type="text/javascript">
function ics2json(input) function ics2json(input)
{ {
@ -130,7 +134,7 @@ function showresult()
html += line; html += line;
}); });
document.body.innerHTML = html; content.innerHTML = html;
} }
} }