You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
537 B
21 lines
537 B
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet" href="style.css" class="style">
|
||
|
<script type="text/javascript" src="wallpapper.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
function initGreeter() {
|
||
|
let defaultWallpapper = window.localStorage.getItem(DEFAULT_WALLPAPPER);
|
||
|
if(defaultWallpapper) {
|
||
|
updateWallpapper(defaultWallpapper);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
window.addEventListener("GreeterReady", initGreeter)
|
||
|
</script>
|
||
|
<title>Example Theme</title>
|
||
|
</head>
|
||
|
<body />
|
||
|
</html>
|