2023-08-03 20:50:43 +00:00
|
|
|
{% apply remove_whitespace %}
|
2015-02-14 05:12:54 +00:00
|
|
|
<!DOCTYPE html>
|
2016-09-23 13:40:22 +00:00
|
|
|
<html>
|
2015-02-14 05:12:54 +00:00
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
2017-03-03 06:20:07 +00:00
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
2017-04-27 16:16:56 +00:00
|
|
|
<script type='text/javascript'>
|
|
|
|
var active_page = "irc";
|
|
|
|
</script>
|
2015-02-14 05:12:54 +00:00
|
|
|
<title>{{ settings.title }}</title>
|
2017-04-27 16:16:56 +00:00
|
|
|
{% include 'header.html' %}
|
2016-09-23 13:40:22 +00:00
|
|
|
<link rel="stylesheet" media="screen" href="/stylesheets/dark_irc.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="bar top">
|
|
|
|
{{ boardlist.top }}
|
2015-02-14 05:12:54 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<header>
|
2017-05-11 12:05:20 +00:00
|
|
|
<h1 class="glitch" data-text="{{ settings.title }}"> {{ settings.title }}</h1>
|
2015-02-14 05:12:54 +00:00
|
|
|
<div class="subtitle">{{ settings.subtitle }}</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
2016-09-23 13:40:22 +00:00
|
|
|
<div class="ban" style="text-align: left!important;">
|
2016-12-10 09:24:58 +00:00
|
|
|
<h2>Web Client - Point your own clients to #{{ settings.channel }} on {{ settings.server }}:+{{ settings.port }} .</h2>
|
2019-04-05 17:52:48 +00:00
|
|
|
<iframe src="https://kiwiirc.com/nextclient/#irc://{{ settings.server }}:+{{ settings.port }}/#{{ settings.channel }}" width="800px" height="100%" scrolling="no"></iframe>
|
2015-02-14 05:12:54 +00:00
|
|
|
</div>
|
2017-04-27 16:16:56 +00:00
|
|
|
<div class="pages"></div>
|
2023-08-03 01:31:45 +00:00
|
|
|
<script type="text/javascript">{% verbatim %}
|
2017-04-27 16:16:56 +00:00
|
|
|
ready();
|
2023-08-03 01:31:45 +00:00
|
|
|
{% endverbatim %}</script>
|
2015-02-14 05:12:54 +00:00
|
|
|
</body>
|
|
|
|
</html>
|
2023-08-03 20:50:43 +00:00
|
|
|
{% endapply %}
|