68 lines
1.8 KiB
HTML
68 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>SumiLaunch</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<style>
|
|
html, body {
|
|
font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
color: #222;
|
|
background-color: #ddd;
|
|
}
|
|
|
|
a, a:visited { text-decoration: none; color: #a22121; }
|
|
|
|
.center {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 100%;
|
|
max-width: 400px;
|
|
text-align: center;
|
|
}
|
|
|
|
.grid {
|
|
border: 1px solid black;
|
|
padding: 10px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.grid p { margin-top: 0; margin-bottom: 20px; }
|
|
|
|
table { width: 100%; }
|
|
table img { width: 64px; height: 64px; }
|
|
|
|
/* Optional: keep empty cells from adding weird padding */
|
|
td:empty { padding: 0; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="center">
|
|
<h2>SumiLaunch</h2>
|
|
|
|
<!-- DuckDuckGo HTML search -->
|
|
<form action="https://html.duckduckgo.com/html/" method="get">
|
|
<input id="q" style="width: 250px;" type="text" placeholder="DuckDuckGo Search" name="q">
|
|
<input type="submit" value="Search">
|
|
</form>
|
|
|
|
<br>
|
|
|
|
<div class="grid" id="sections">
|
|
<!-- JS will inject ALL sections here -->
|
|
</div>
|
|
|
|
<h4>TIP: Launchpad Shortcut</h4>
|
|
<img width="200" alt="Menu > Add to Home Screen" src="http://192.168.1.242:8087/images/tip.jpg" />
|
|
<p>Designed for classic BBOS.</p>
|
|
<p>© 2026 <a href="http://forum.sumisu.xyz"><b>Sumisu</b></a></p>
|
|
<p>Based on <a href="http://lunarproject.org" target="_blank">LunarProject.org</a>.</p>
|
|
</div>
|
|
|
|
<script src="links.js"></script>
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|