-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·32 lines (31 loc) · 1.02 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="it">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="author" content="Isidoro Ghezzi © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023, 2024">
<meta name="viewport" content="initial-scale=1">
<link id="favicon" rel='icon' type='image/png'>
<script>
const piccoGetOrDefault = (params, field, defaultValue) => {
// test 20210712
let ret = params.get(field);
if (ret === null) {
ret = defaultValue;
}
return ret;
};
document.write ('<title>#picco'+piccoGetOrDefault (new URL(location).searchParams, 'picco', 16)+'</title>');
</script>
<link rel="stylesheet" type="text/css" href="index.css" />
<script src="data/data12.js"></script>
<script src="data/data13.js"></script>
<script src="data/data14.js"></script>
<script src="data/data15.js"></script>
<script src="data/data16.js"></script>
<script src="picco.js"></script>
<script src="model.js"></script>
<script src="index.js"></script>
</head>
<body>
</body>
</html>