-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (66 loc) · 2.25 KB
/
Copy pathindex.html
File metadata and controls
75 lines (66 loc) · 2.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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Incremental Template</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>Incremental Template</h1>
</header>
<main id="main-grid">
<aside id="left-column" class="column">
<section id="resources" class="panel">
<h2>Resources</h2>
<div id="resource-list"></div>
</section>
<section id="jobs" class="panel">
<h2>Jobs</h2>
<div id="job-list"></div>
</section>
</aside>
<section id="center-column" class="column">
<section id="buildings" class="panel">
<h2>Buildings</h2>
<div id="building-grid" class="grid"></div>
</section>
<section id="upgrades" class="panel">
<h2>Upgrades</h2>
<div id="upgrade-grid" class="grid"></div>
<div id="upgrades-empty" class="small-muted" style="margin-top:8px;display:none">All available upgrades have been bought.</div>
</section>
<section id="log" class="panel">
<h2>Event Log</h2>
<div id="event-log" class="event-log"></div>
</section>
</section>
<aside id="right-column" class="column">
<section id="controls" class="panel">
<h2>Controls</h2>
<div class="control-row">
<button id="pause-btn" class="btn">Pause</button>
<button id="reset-btn" class="btn">Reset</button>
</div>
<div class="small-muted" style="margin-top:10px">
Tick rate: <strong id="tick-rate">20</strong> TPS
</div>
<div style="margin-top:12px" class="small-muted">
Quick tips:
<ul>
<li>Use Build buttons to construct buildings.</li>
<li>Assign jobs to generate resources.</li>
<li>Population grows toward capacity if food is sufficient.</li>
</ul>
</div>
</section>
</aside>
</main>
<footer>
<small>Incremental Template — modular starter</small>
</footer>
<div id="tooltip" class="tooltip" style="display:none;"></div>
<script type="module" src="ui.js"></script>
</body>
</html>