feat: separate irc page

This commit is contained in:
Lain Iwakura 2026-05-19 23:22:01 +03:00
parent 227226b291
commit 7f05221b1b
Signed by: lain
GPG key ID: 8160466B2E8D1441
4 changed files with 54 additions and 4 deletions

View file

@ -10,8 +10,8 @@
<div class="container">
<h1>Welcome home. Again.</h1>
<div class="links">
<a href="https://src.cultist.club">src</a>
<a href="ircs://irc.cultist.club:6697">irc</a>
<a href="https://src.cultist.club" target="_blank">src</a>
<a href="/irc">irc</a>
</div>
<div class="uptime">
<marquee>{{uptime}}</marquee>

23
web/irc.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>irc - cultist.club</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1>cultist.club</h1>
<div class="info">
<p>server: <span class="hl">cultist.club</span></p>
<p>port: <span class="hl">6697</span> (tls)</p>
<p>channel: <span class="hl">#main</span></p>
</div>
<div class="links">
<a href="ircs://irc.cultist.club:6697">open in client</a>
<a href="/">back</a>
</div>
</div>
</body>
</html>

View file

@ -44,6 +44,21 @@ h1 {
color: var(--muted);
}
.info {
margin-top: 1.5rem;
font-size: 0.85rem;
color: var(--muted);
line-height: 1.8;
}
.info p {
margin: 0;
}
.hl {
color: var(--fg);
}
.uptime {
margin-top: 2rem;
overflow: hidden;