├── _config.yml ├── .gitignore ├── Gemfile ├── favicon.ico ├── img ├── icon-lock.gif ├── screenshot.png ├── header-logo.png ├── icon-lineup.gif ├── icon-shield.gif ├── download-button.gif └── brought-to-you-by-tor.gif ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff ├── glyphicons-halflings-regular.woff2 └── glyphicons-halflings-regular.svg ├── README.md ├── _layouts └── default.html ├── css └── tor-messenger.css ├── index.html └── js └── bootstrap.min.js /_config.yml: -------------------------------------------------------------------------------- 1 | title: Tor Messenger 2 | source: . 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .DS_Store 3 | Gemfile.lock 4 | 5 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' 3 | 4 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/favicon.ico -------------------------------------------------------------------------------- /img/icon-lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/icon-lock.gif -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /img/header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/header-logo.png -------------------------------------------------------------------------------- /img/icon-lineup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/icon-lineup.gif -------------------------------------------------------------------------------- /img/icon-shield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/icon-shield.gif -------------------------------------------------------------------------------- /img/download-button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/download-button.gif -------------------------------------------------------------------------------- /img/brought-to-you-by-tor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/img/brought-to-you-by-tor.gif -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethical-buddy/tor-messenger-website/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Website for Tor Messenger 2 | ========================= 3 | 4 | Local setup 5 | ----------- 6 | 7 | Consider installing `rbenv`, then: 8 | 9 | gem install bundler 10 | bundle install 11 | bundle exec jekyll serve -w 12 | 13 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |A desktop chat app for privacy-conscious people. Built on top of 20 | Instantbird and layered over the Tor network, Tor Messenger is an 21 | easy-to-use, integrated instant messaging client that gives you strong 22 | privacy and protection online.
23 |
26 |