2023-01-28 21:08:47 -08:00
|
|
|
<!DOCTYPE html>
|
2023-02-13 13:26:50 -08:00
|
|
|
<!-- Your server today is {{ svchost }} -->
|
2023-01-28 21:08:47 -08:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Seagull Game</title>
|
|
|
|
{%- for style in styles -%}
|
|
|
|
<link rel="stylesheet" href="{{ style }}">
|
|
|
|
{%- endfor -%}
|
|
|
|
{%- for script in scripts -%}
|
|
|
|
<script src="{{ script }}"></script>
|
|
|
|
{%- endfor -%}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>
|
2025-07-29 12:50:35 -07:00
|
|
|
<div style="background:yellow;border:2px red;">
|
2023-01-28 21:08:47 -08:00
|
|
|
<h1>This doesn't work without JavaScript.</h1><br />
|
|
|
|
<h2>You're probably using a browser extension or privacy tool that disables it.</h2>
|
2025-07-29 12:50:35 -07:00
|
|
|
</div>
|
2023-01-28 21:08:47 -08:00
|
|
|
</noscript>
|
|
|
|
<div id="root">
|
|
|
|
|
|
|
|
<div id="main-sidebar">
|
|
|
|
<div id="side-seagull-image"> <img width="256" src={{ seagull_pic }}> </div>
|
|
|
|
<div id="side-seagull-name"><span id="lbl-seagull-name">Nameless</span> <a href="javascript:change_seagull_name()">✏️</a></div>
|
|
|
|
<div id="side-seagull-name-editor"><input type="text" id="edt-seagull-name"> <a href="javascript:confirm_seagull_name()">✅</a><a href="javascript:cancel_seagull_name()">❌</a></div>
|
|
|
|
<div id="side-seagull-stats">
|
2025-07-29 12:50:35 -07:00
|
|
|
<p id="side-seagull-lvl">Lv <span id="lbl-seagull-lvl">1</span> <span id="lbl-seagull-class">LoadError</span></p>
|
|
|
|
<p id="side-seagull-xp">XP: <span id="lbl-seagull-xp-current">0</span>/<span id="lbl-seagull-xp-next">0</span></p>
|
2023-01-28 21:08:47 -08:00
|
|
|
<p id="side-seagull-misc">
|
2023-02-24 12:39:18 -08:00
|
|
|
Colony: <span id="lbl-seagull-colony">1337</span><br />
|
2023-02-27 17:08:28 -08:00
|
|
|
Shinies: <span id="lbl-seagull-shinies">420</span><br />
|
2025-07-29 12:50:35 -07:00
|
|
|
Food: <span id="lbl-seagull-food">69</span>
|
2023-01-28 21:08:47 -08:00
|
|
|
</p>
|
|
|
|
</div>
|
2025-07-29 12:50:35 -07:00
|
|
|
<hr />
|
|
|
|
<div id="side-action-bar">
|
|
|
|
<p>Human encounters: <select id="menu-enc-human">
|
|
|
|
<option value="pause">Stop and ask</option>
|
|
|
|
<option value="steal-food">Steal food</option>
|
|
|
|
<option value="steal-shinies">Steal shiny things</option>
|
|
|
|
</select></p>
|
|
|
|
<p>Seagull encounters: <select id="menu-enc-seagull">
|
|
|
|
<option value="pause">Stop and ask</option>
|
|
|
|
<option value="recruit">Attempt recruiting</option>
|
|
|
|
<option value="steal-food">Steal food</option>
|
|
|
|
<option value="steal-shinies">Steal shiny things</option>
|
|
|
|
</select></p>
|
|
|
|
</div>
|
2023-01-28 21:08:47 -08:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="main-content">
|
|
|
|
<div id="main-day-stats">It has been <span id="main-day-counter">a cosmically unknowable number of</span> days.</div>
|
|
|
|
<div id="main-log"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|