diff options
| author | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-06-20 09:40:07 -0700 |
|---|---|---|
| committer | Elizabeth Alexander Hunt <me@liz.coffee> | 2026-06-20 09:40:07 -0700 |
| commit | fb653292612eddca5b088ed88466c546d1597107 (patch) | |
| tree | 900ed32e066812688858ed3bb15128c41bb78054 /templates/home.html | |
| download | penguins.lan-fb653292612eddca5b088ed88466c546d1597107.tar.gz penguins.lan-fb653292612eddca5b088ed88466c546d1597107.zip | |
Initial commit
Diffstat (limited to 'templates/home.html')
| -rw-r--r-- | templates/home.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..aeb2739 --- /dev/null +++ b/templates/home.html @@ -0,0 +1,53 @@ +{{ define "content" }} +<h2>~welcome</h2> + +<p>hey there penguin! or, <strong>{{ .User.Username }}</strong>, i guess.</p> +<p>this network does not have access to the outside internet. everything runs off of this battery, phone, and mini AP; i carry it around sometimes.</p> + +<div style="text-align: center" > + <img width="60%" src="/static/img/lab.png"> +</div> + +<p>wanna fuck up this website? the code is available to you to fuck up. go crazy (put in a reverse shell if you want for all i care), but please be courteous <3.</p> +<pre> +git clone you@penguins.lan:~/penguins.lan +cd penguins.lan +vim templates/home.html +git add . && git commit -m "HAHAHA" +git push +</pre> + +<marquee class="marquee">* LONG LIVE THE MARQUEE TAG * THEY CAN'T TAKE IT FROM US *</marquee> + +<hr> + +<h3>~waddlers</h3> +<p class="legend"> + <span class="dot chat"></span> chatting + <span class="dot network"></span> online + <span class="dot offline"></span> offline +</p> +<ul class="roster" id="roster"> + {{ range .Users }} + <li><span class="dot {{ .Status }}"></span> <strong>{{ .Username }}</strong> <span class="muted">— last seen {{ .LastSeen }}</span></li> + {{ end }} +</ul> +<script src="/static/js/waddlers.js"></script> + +<div id="log" class="chat-log" aria-live="polite"></div> + +<form id="chat-form" class="chat-form" autocomplete="off"> + <input id="msg" name="msg" placeholder="hello fellow penguins!" maxlength="500" autofocus> + <button type="submit">send</button> +</form> + +<hr> + +<h3>~minecraft</h3> +<p>java edition — join <code>penguins.lan</code></p> +<p id="mc-status" class="muted">checking…</p> +<script src="/static/js/minecraft.js"></script> + + +<script src="/static/js/chat.js"></script> +{{ end }} |
