mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05:00
29 lines
685 B
HTML
29 lines
685 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<title>IRC client</title>
|
||
|
<link rel="stylesheet" href="assets/style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<section id="sidebar">
|
||
|
<ul id="buffer-list">
|
||
|
<!--<li class="active"><a href="#">##soju-playground</a></li>-->
|
||
|
</ul>
|
||
|
</section>
|
||
|
<section id="log">
|
||
|
<!--<div class="logline">
|
||
|
<a href="#" class="timestamp">12:27:42</a>
|
||
|
<<a href="#" class="nick">emersion</a>>
|
||
|
Hi there!
|
||
|
</div>-->
|
||
|
</section>
|
||
|
<form id="composer">
|
||
|
<input type="text" id="composer-input" placeholder="Type a message">
|
||
|
</form>
|
||
|
|
||
|
<script src="assets/irc.js"></script>
|
||
|
<script src="assets/client.js"></script>
|
||
|
</body>
|
||
|
</html>
|