blob: 29b6a4f8a12cae4574aace63689cd2c0608bc9c9 (
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
|
<!DOCTYPE html>
<!--
SPDX-License-Identifier: GPL-3.0-only
Copyright (c) 2024 Runxi Yu <me@runxiyu.org>
Copyright (c) 2022 hello-smile6
-->
<html>
<head>
<title>Joke InspIRCd pseudo-server written in HTML/JS w/ WebSocket</title>
<meta charset="utf-8" />
</head>
<body>
<h1>Joke InspIRCd pseudo-server written in HTML/JS w/ WebSocket</h1>
<noscript>
<div id="noscript-warning" style="background-color: rgb(255, 225, 225); padding: 0.5rem 1rem;">
<p>
Obviously, this requires JavaScript...
</p>
</div>
</noscript>
<p>
Check the JavaScript console!
</p>
<p>
This program comes with ABSOLUTELY NO WARRANTY.
This is free software, and you are welcome to redistribute it under certain conditions.
You may <a href="./LICENSE.txt" target="_blank">view the license</a>.
</p>
<p>
THis is an instance of <a href="https://git.sr.ht/~runxiyu/htmlserv/">HTMLServ</a>.
</p>
<script src="main.js" type="module"></script>
</body>
</html>
|