-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.25 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.25 KB
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
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>PINGLEWARE App Store</title>
<link rel="stylesheet" href="style.css?v2025-05-06.001" />
</head>
<body>
<header>
<img src="assets/logo.png" width="100" height="100" alt="Logo" />
<h1>PINGLEWARE App Store</h1>
</header>
<main id="app-list">
<!-- Apps will be loaded here -->
</main>
<footer>
<p id="footer">© 2025 PINGLEWARE App Store</p>
<a href="https://github.com/pingleware/appstore" style="color: white; text-decoration:none;" target="_blank">View Source Code</a>
</footer>
<script src="scripts.js?v=2025-05-06.010"></script>
<script type="text/javascript">
window.onload = function() {
const year = new Date().getFullYear();
if (year > 2018) {
document.getElementById("footer").innerHTML = `© 2018-${year} by <a href="https://presspage-entertainment.biz" style="color: white; text-decoration:none;" target="_blank">PRESSPAGE ENTERTAINMENT INC</a> dba <a href="https://pingleware.presspage-entertainment.biz" style="color: white; text-decoration:none;" target="_blank">PINGLEWARE</a>. All rights reserved.`;
}
}
</script>
</body>
</html>