62 lines
2.8 KiB
HTML
62 lines
2.8 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}echoIRCd — a from-scratch IRC server in Rust{% endblock %}</title>
|
|
<meta name="description" content="echoIRCd is a modern IRC daemon and services suite, written from scratch in Rust — full IRCv3, modern TLS, SASL.">
|
|
<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=Rubik:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</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="/connect"{% if active == "connect" %} class="on"{% endif %}>Connect</a>
|
|
<a href="https://orbit.devtronic.pro">Web client</a>
|
|
<a href="https://git.devtronic.pro/echo/echoIRCd" class="ext">Source↗</a>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
<footer class="site-foot">
|
|
<div class="foot-in">
|
|
<div class="foot-brand">
|
|
<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>
|
|
</div>
|
|
<p class="foot-tag">A native-Rust IRC daemon & services. No forks, no C, no <code>unsafe</code>.</p>
|
|
<nav class="foot-links">
|
|
<a href="https://git.devtronic.pro/echo/echoIRCd">echoIRCd</a>
|
|
<a href="https://git.devtronic.pro/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>
|
|
</footer>
|
|
</body>
|
|
</html>
|