2023-06-27 17:03:43 +03:00
<!DOCTYPE html>
< html lang = "en" > < head >
< meta http-equiv = "content-type" content = "text/html; charset=UTF-8" >
< title > Tornado Cash Info< / title >
< link rel = "icon" type = "image/x-icon" href = "images/tornado_logo.ico" >
< link href = "styles/bootstrap.min.css" rel = "stylesheet" >
< script src = "scripts/bootstrap.bundle.min.js" type = "text/javascript" > < / script >
< script src = "scripts/typeit.min.js" type = "text/javascript" > < / script >
< meta content = "width=device-width, initial-scale=1" name = "viewport" >
< meta name = "description" content = "An open, permissionless and unstoppable privacy protocol." >
< link rel = "stylesheet" href = "styles/main.css" >
< link rel = "stylesheet" href = "styles/typeit.css" >
< body >
< nav class = "navbar navbar-expand-lg" >
< div class = "container-fluid" >
< ul class = "navbar-nav mb-2 mb-lg-0" >
< li class = "nav-item" >
< a class = "nav-link" target = "_blank" href = "https://element.tornadocash.social" >
< img class = "nav-logo" src = "images/element_logo.svg" >
< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" target = "_blank" href = "https://t.me/TornadoOfficial" >
< img class = "nav-logo" src = "images/telegram_logo.svg" >
< / a >
< / li >
< li class = "nav-item" >
< a class = "nav-link" target = "_blank" href = "https://forum.tornado.ws/" >
< img class = "nav-logo" src = "images/discourse_logo.svg" >
< / a >
< / li >
2023-06-27 18:41:02 +03:00
< li class = "nav-item" >
< a class = "nav-link" target = "_blank" href = "https://docs.tornado.ws/" >
< img class = "nav-logo" src = "images/gitbook_logo.svg" >
< / a >
< / li >
2023-06-27 17:03:43 +03:00
<!-- <li class="nav - item">
< a class = "nav-link" target = "_blank" href = "https://twitter.com/TornadoLink" >
< img class = "nav-logo" src = "images/twitter_logo.svg" >
< / a >
< / li > -->
< li class = "nav-item" >
< a class = "nav-link" target = "_blank" href = "https://git.tornado.ws/" >
< img class = "nav-logo" src = "images/git_logo.svg" >
< / a >
< / li >
< / ul >
< / div >
< / nav >
< div class = "container" >
< div class = "row justify-content-md-center" >
< img class = "title-image m-5" src = "images/tornado_logo.svg" >
< h1 class = "text-center" id = "title-text" data-typeit-id = "1102246" > Privacy is a human right.< span class = "ti-cursor" data-ti-animation-id = "1102246" > |< / span > < / h1 >
< / div >
< div class = "row m-3 mt-5" >
2023-06-27 21:35:27 +03:00
Welcome to tornado.ws (also .social): a community dedicated to maintaining
2023-06-27 21:31:33 +03:00
the original Tornado Cash protocol and building on top of it!
2023-06-27 17:03:43 +03:00
< br >
< p >
< / p >
2023-06-27 21:31:33 +03:00
We hold to the principle that surveillance is dangerous
and violent, and that wanting secrecy is something natural
to all human beings on this planet.
2023-06-27 17:03:43 +03:00
< br >
< p >
< / p >
2023-06-27 21:31:33 +03:00
If you click the button below, you will find access links to the application,
otherwise, in the top right, you will find social and repository
links tied to this community.
2023-06-27 17:03:43 +03:00
< br >
< p >
< / p >
2023-06-27 21:31:33 +03:00
Join us!
2023-06-27 17:03:43 +03:00
< / div >
< / div >
< div class = "container" >
< div class = "row m-3" >
< button class = "tornado-button mt-5 mb-2" data-bs-toggle = "modal" data-bs-target = "#tornadoModal" >
2023-06-27 21:31:33 +03:00
Use the application
2023-06-27 17:03:43 +03:00
< / button >
2023-06-27 21:31:33 +03:00
< p class = "mt-5" > btw, this website is open-source, just curl it.< / p >
2023-06-27 17:03:43 +03:00
< / div >
< / div >
< div class = "modal fade" id = "tornadoModal" >
< div class = "modal-dialog modal-lg modal-dialog-centered" >
< div class = "modal-content" >
< div class = "modal-header" >
2023-06-27 21:31:33 +03:00
< h3 class = "modal-title" > Use Tornado.< / h3 >
2023-06-27 17:03:43 +03:00
< button type = "button" class = "btn-close btn-close-white" data-bs-dismiss = "modal" aria-label = "Close" > < / button >
< / div >
< div class = "modal-body" >
< h5 class = "text-center mb-5" > < a href = "https://classic.tornado.ws/" > classic.tornado.ws< / a > < / h5 >
< h5 class = "text-center mb-5" > < a href = "https://nova.tornado.ws/" > nova.tornado.ws< / a > < / h5 >
< / div >
< / div >
< / div >
< / div >
< script type = "text/javascript" >
function toggleModalSize() {
const targetElement = document.getElementById('tornadoModal')
const firstChild = targetElement.children[0]
if(firstChild.className.includes('modal-lg')) {
firstChild.className = `modal-dialog modal-xl modal-dialog-centered`
} else {
firstChild.className = `modal-dialog modal-lg modal-dialog-centered`
}
return;
}
new TypeIt("#title-text", {
speed: 175,
loop: false,
}).go();
< / script >
< / body > < / html >