-
Notifications
You must be signed in to change notification settings - Fork 0
/
contents.html
94 lines (84 loc) · 3.19 KB
/
contents.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/contentspage.css">
<link rel="stylesheet" href="assets/css/fontawesome.css">
<link rel="icon" type="image/png" href="assets/images/favicon.png" />
<title>legacy webOS - Contents</title>
</head>
<body>
<!--Preloader-->
<div id="preloader">
<div id="status"> </div>
</div>
<!--Navbar-->
<header>
<nav class="navbar container flex">
<a href="index.html"><img class="logo" src="assets/images/lwoslogo.png"></a>
<input type="checkbox" id="menu-toggle" />
<label for="menu-toggle" id="hamburger-menu">
<i class="fa-solid fa-bars"></i>
</label>
<ul class="navbarbtns flex">
<li><a href="index.html">Home</a></li>
<li><a href="contents.html">Contents</a></li>
</ul>
</nav>
</header>
<!--Content-->
<main>
<h1>Contents</h1>
<p>Here, we have some contents for legacy webOS</p>
<div class="cards">
<div class="card">
<img src="assets/images/eclipselogo.png" alt="">
<h2>Eclipse palm webOS Plugins</h2>
<p>Palm provided a Plugin for Eclipse to make legacy webOS development easier</p>
<a href="https://github.com/DavidModPhone/palmweboseclipseplugin">Install the plugin</a>
</div>
<div class="card">
<img src="assets/images/card2.jpg" alt="Card Image 2">
<h2>To be Added</h2>
<p>To be added</p>
</div>
<div class="card">
<img src="assets/images/card3.jpg" alt="Card Image 3">
<h2>To be added.</h2>
<p>To be added.</p>
</div>
</div>
</main>
<!--Footer-->
<footer class="footer">
<div class="container">
<span> © DavidModPhone 2024, This website is not meant to replace <a
href="https://webosarchive.org">webOS Archive</a> made by <a
href="https://codepoetry.app/">codepoetry inc.</a></span>
</div>
</footer>
</body>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src="assets/js/fontawesome.js"></script>
<script type="text/javascript">
//<![CDATA[
$(window).on('load', function () { // makes sure the whole site is loaded
$('#status').fadeOut(); // will first fade out the loading animation
$('#preloader').delay(350).fadeOut('slow'); // will fade out the white DIV that covers the website.
$('body').delay(350).css({ 'overflow': 'visible' });
})
//]]>
document.body.classList.remove('no-scroll');
(function () {
function onReady() {
document.body.classList.remove('no-scroll');
}
if (document.readyState === 'complete') {
onReady();
} else {
document.addEventListener('DOMContentLoaded', onReady);
}
})();
</script>
</html>