Upload files to "website/news"

This commit is contained in:
2026-01-19 15:06:37 +00:00
parent 76aac92fc5
commit 5db462d9cb
4 changed files with 558 additions and 0 deletions

53
website/news/index.html Normal file
View File

@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SumiNews (68k-style)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
<!-- Optional: match your other Lunar apps favicon/theme -->
<meta name="theme-color" content="#bef17c" />
</head>
<body>
<div class="center">
<h2>SumiNews</h2>
<div class="grid">
<div class="controls">
<label>
Feed:
<select id="feedSelect"></select>
</label>
<label>
Region:
<select id="regionSelect"></select>
</label>
<button id="refreshBtn" type="button">Refresh</button>
</div>
<div class="fineprint">
Uses Google News RSS. <!-- If nothing loads, set a working proxy in feeds.js -->
</div>
<hr />
<!-- No loading box on purpose -->
<div id="error" class="error" style="display:none;"></div>
<div id="items"></div>
</div>
<p style="font-size: 12px;">
Basic HTML news for old/new browsers. Inspired by the 68k.news approach (topics + region editions).</br>
Based on <a href="http://lunarproject.org" target="_blank">LunarProject.org</a>.
</p>
</div>
<script src="feeds.js"></script>
<script src="app.js"></script>
</body>
</html>