linkdir/_zola/templates/index.html
zayd d4ae6ffea9
first commit, still heavy WIP
Signed-off-by: zayd <wanderer@envs.net>
2025-02-25 00:10:45 -05:00

80 lines
2.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1, viewport-fit=cover">
{% block title %}
<title>Midgard Link Directory</title>
{% endblock title %}
<link rel="stylesheet" href="/assets/css/linkdir.css">
</head>
<body>
<h1>Midgard Link Directory</h1>
{% block content %}
<p>
This is a collection of links to sites and services on darknets maintained
by the Midgard community.
</p>
<section>
<a class="card-link" href="i2p">
<div class="card">
<div class="icon">
<img src="/assets/images/logo/i2p.svg">
</div>
<div class="text">
<h2>I2P</h2>
<p>
The Invisible Internet Project (I2P) is a fully encrypted
private network layer. It protects your activity and
location. Every day people use the network to connect with
people without worry of being tracked or their data being
collected. In some cases people rely on the network when they
need to be discrete or are doing sensitive work.
</p>
</div>
</div>
</a>
<a class="card-link" href="tor">
<div class="card">
<div class="icon">
<img src="/assets/images/logo/tor.svg">
</div>
<div class="text">
<h2>Tor</h2>
<p>
Tor is a free overlay network for enabling anonymous
communication. Built on free and open-source software and
more than seven thousand volunteer-operated relays
worldwide, users can have their Internet traffic routed via
a random path through the network.
</p>
</div>
</div>
</a>
<a class="card-link" href="yggdrasil">
<div class="card">
<div class="icon">
<img src="/assets/images/logo/yggdrasil.svg">
</div>
<div class="text">
<h2>Yggdrasil</h2>
<p>
Yggdrasil is a new experimental compact
routing scheme. It is designed to be a
future-proof and decentralised alternative
to the structured routing protocols
commonly used today on the Internet, as
well as an enabling technology for future
large-scale mesh networks.
</p>
</div>
</div>
</a>
</section>
{% endblock content %}
<footer>
Git on <a href="https://forge.fsky.io/midgard/site">Clearnet</a>
</footer>
</body>
</html>