mirror of
https://github.com/YunoHost-Apps/ergo_ynh.git
synced 2024-09-03 18:26:31 +02:00
50 lines
870 B
HTML
50 lines
870 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title> Ergo Chat IRC Server </title>
|
|
<style>
|
|
body {
|
|
padding-top: 15px;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
min-width: 985px;
|
|
}
|
|
p, ol {
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
font-size: x-large;
|
|
}
|
|
div {
|
|
width: 940px;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
text-align: left;
|
|
}
|
|
a {
|
|
cursor: pointer;
|
|
color: #086dd6;
|
|
box-sizing: border-box;
|
|
text-decoration: none;
|
|
}
|
|
ul {
|
|
list-style-type: disc;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Ergo Chat IRC Server</h1>
|
|
<p>To join <strong>__NETWORK_NAME__</strong></p>
|
|
<div>
|
|
<p>
|
|
<strong>IRC Instructions:</strong>
|
|
</p>
|
|
<ol>
|
|
Server Details:
|
|
<ul>
|
|
<li>__DOMAIN__ on __PORT__ / __PORT_SECURE__ (SSL)
|
|
</ul>
|
|
</ol>
|
|
</div>
|
|
</body>
|
|
</html>
|