arti/public/index.html

63 lines
2.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Arti A Tor implementation in Rust</title>
<style>
.logo {
width: 60%;
margin: auto;
display: block;
}
.body {
width: 60%;
margin: auto;
font-family: 'Source Sans Pro', sans-serif;
}
.links {
margin: 3em auto auto auto;
width: 60%;
}
.link {
color: white;
background: blueviolet;
padding: 1em;
margin: 0.8em;
text-align: center;
font-weight: bold;
}
.link :link {
color: white;
}
.link :visited {
color: #eee;
}
</style>
</head>
<body>
<img src="./arti_logo.png" class="logo" alt="Arti logo">
<div class="body">
<p>Arti is a project to implement
the <a href="https://www.torproject.org/">Tor</a> anonymity protocols in
the
<a href="https://www.rust-lang.org/">Rust</a> programming language.
</p>
<p>Currently, Arti provides a working Tor client, but lacks support for
anticensorship or onion services. Until it is more mature, we
recommend it for experimental use only.
</p>
<p>The latest Arti release is <a href="https://blog.torproject.org/arti_110_released/">1.1.0</a>.
</p>
<div class="links">
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md">Latest README</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti">Source repository</a></p>
<p class="link"><a href="https://tpo.pages.torproject.net/core/doc/rust/arti_client/index.html">API documentation</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/CONTRIBUTING.md">How to contribute</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/doc/FAQ.md">Frequently asked questions</a></p>
<p class="link"><a href="https://www.torproject.org/">More about Tor</a></p>
</div>
</div>
</body>
</html>