blob: aeb273914a767c722ff01f6269c943cee59ce1ec (
plain) (
blame)
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
|
{{ 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 }}
|