-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
67 lines (67 loc) · 2.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Factory Launch Prototype</title>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header class="app-header">
<h1>Factory Launch</h1>
<p class="tagline">Research. Automate. Launch.</p>
</header>
<main class="layout">
<section class="panel world-panel" aria-labelledby="world-title">
<div class="panel-header">
<h2 id="world-title">Launch Site</h2>
<div id="placement-indicator" class="meta">Select a machine to place.</div>
</div>
<div class="world-toolbar" role="toolbar" aria-label="Build toolbar">
<button type="button" class="build-button" data-build="drill">
<span class="build-label">Place Drill</span>
<span class="build-count"><span data-count>0</span> available</span>
</button>
<button type="button" class="build-button" data-build="smelter">
<span class="build-label">Place Smelter</span>
<span class="build-count"><span data-count>0</span> available</span>
</button>
<button type="button" id="cancel-placement" class="build-button build-button--cancel" disabled>
Cancel Placement
</button>
</div>
<div id="world-grid" class="world-grid" role="grid" aria-label="Factory grid"></div>
<div id="tile-info" class="tile-info meta">Select a tile to see details.</div>
</section>
<section class="panel" id="research-panel">
<h2>Research Node</h2>
<div id="research-status" class="research-status"></div>
<button id="contribute-research" class="primary">Contribute Resources</button>
</section>
<section class="panel" id="inventory-panel">
<h2>Player Inventory</h2>
<div class="inventory-grid" id="inventory-grid"></div>
</section>
<section class="panel" id="storage-panel">
<h2>Storage Chests</h2>
<div id="storage-chests" class="storage-grid"></div>
</section>
<section class="panel" id="machines-panel">
<h2>Machines</h2>
<div id="drills"></div>
<div id="smelters"></div>
</section>
<section class="panel" id="log-panel">
<h2>Event Log</h2>
<div id="event-log" class="event-log"></div>
</section>
</main>
<footer class="app-footer">
<p>
Prototype inspired by
<strong>Factorio</strong> and <strong>Immortality Factory</strong>.
</p>
</footer>
<script type="module" src="js/main.js"></script>
</body>
</html>