97 lines
4.8 KiB
HTML
97 lines
4.8 KiB
HTML
<!doctype html>
|
|
<html lang="en" data-theme="dark">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="color-scheme" content="dark light">
|
|
<script>(function(){try{var t=localStorage.getItem('theme');if(t==='light'||t==='dark')document.documentElement.setAttribute('data-theme',t);}catch(e){}})();</script>
|
|
<title>{% block title %}echoIRCd — a from-scratch IRC server in Rust{% endblock %}</title>
|
|
<meta name="description" content="echoIRCd is a modern IRC daemon written from scratch in Rust — full IRCv3, modern TLS, SASL. Pairs with echo services, a separate package linked over S2S.">
|
|
<meta property="og:title" content="echoIRCd">
|
|
<meta property="og:description" content="A from-scratch IRC server, written in Rust.">
|
|
<meta property="og:type" content="website">
|
|
<link rel="icon" href="/favicon.svg" type="image/svg+xml">
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;500;600&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/style.css?v={{ css_v }}">
|
|
{% block head %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header class="topbar">
|
|
<div class="bar-in">
|
|
<a class="brand" href="/">
|
|
<svg class="mark" viewBox="0 0 32 32" aria-hidden="true">
|
|
<circle cx="8" cy="16" r="3.1" fill="currentColor"/>
|
|
<path d="M14 9.5a9 9 0 0 1 0 13" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"/>
|
|
<path d="M18.5 5.5a15 15 0 0 1 0 21" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"/>
|
|
</svg>
|
|
<span class="brand-name">echoIRCd</span>
|
|
</a>
|
|
<nav class="mainnav">
|
|
<a href="/"{% if active == "home" %} class="on"{% endif %}>Home</a>
|
|
<a href="/features"{% if active == "features" %} class="on"{% endif %}>Features</a>
|
|
<a href="/services"{% if active == "services" %} class="on"{% endif %}>Services</a>
|
|
<a href="/connect"{% if active == "connect" %} class="on"{% endif %}>Chat with us</a>
|
|
<a href="/docs"{% if active == "docs" %} class="on"{% endif %}>Docs</a>
|
|
<a href="https://git.devtronic.pro/echo/echoIRCd" class="ext">Source↗</a>
|
|
<button class="theme-toggle" type="button" onclick="toggleTheme()" aria-label="Toggle dark mode" title="Toggle light / dark">
|
|
<svg class="ic-moon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"/></svg>
|
|
<svg class="ic-sun" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.9 4.9l1.4 1.4M17.7 17.7l1.4 1.4M2 12h2M20 12h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4"/></svg>
|
|
</button>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="site-foot">
|
|
<div class="foot-in">
|
|
<div class="foot-about">
|
|
<a class="foot-logo" href="/">
|
|
<svg class="mark" viewBox="0 0 32 32" aria-hidden="true">
|
|
<circle cx="8" cy="16" r="3.1" fill="currentColor"/>
|
|
<path d="M14 9.5a9 9 0 0 1 0 13" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"/>
|
|
<path d="M18.5 5.5a15 15 0 0 1 0 21" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round"/>
|
|
</svg>
|
|
<span>echoIRCd</span>
|
|
</a>
|
|
<p>Modern IRC, written from scratch in Rust.</p>
|
|
</div>
|
|
|
|
<nav class="foot-col">
|
|
<h4>Project</h4>
|
|
<a href="/features">Features</a>
|
|
<a href="/services">Services</a>
|
|
<a href="/connect">Chat with us</a>
|
|
<a href="/docs/changelog">Changelog</a>
|
|
</nav>
|
|
|
|
<nav class="foot-col">
|
|
<h4>Documentation</h4>
|
|
<a href="/docs/installation">Installation</a>
|
|
<a href="/docs/configuration">Configuration</a>
|
|
<a href="/docs/commands">Commands</a>
|
|
<a href="/docs/ircv3">IRCv3</a>
|
|
</nav>
|
|
|
|
<nav class="foot-col">
|
|
<h4>Source</h4>
|
|
<a href="https://git.devtronic.pro/echo/echoIRCd">echoIRCd</a>
|
|
<a href="https://git.devtronic.pro/echo/echo">echo services</a>
|
|
<a href="https://git.devtronic.pro/echo/website">Website</a>
|
|
<a href="https://orbit.devtronic.pro">Web client</a>
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="foot-bar">
|
|
<span>© 2026 echoIRCd</span>
|
|
<code>#![forbid(unsafe_code)]</code>
|
|
</div>
|
|
</footer>
|
|
<script>function toggleTheme(){var d=document.documentElement,n=d.getAttribute('data-theme')==='dark'?'light':'dark';d.setAttribute('data-theme',n);try{localStorage.setItem('theme',n);}catch(e){}}</script>
|
|
{% block scripts %}{% endblock %}
|
|
</body>
|
|
</html>
|