From 18f332eb3659af8fd6616b6ff82c02803f29c1b9 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Fri, 9 Sep 2016 16:33:50 +0100 Subject: [PATCH] Add content to about page and style --- assets/style.css | 25 +++++++++++++++++++++++ views/about.html | 52 +++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 76 insertions(+), 1 deletion(-) diff --git a/assets/style.css b/assets/style.css index 05ea575..5a44ee5 100644 --- a/assets/style.css +++ b/assets/style.css @@ -239,6 +239,31 @@ pre { break-inside: avoid; } +/* About */ +.content { + padding: 1em; + background: rgba(255, 255, 255, 0.1); + line-height: 1.4em; +} + +.content p:first-child { + margin-top: 0; +} + +.content p:last-child { + margin-bottom: 0; +} + +code { + padding: 0 0.2em; + background: rgba(255, 255, 255, 0.2); +} + +dl.flags { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + line-height: 1.4em; +} + /* Footer */ footer { margin-top: 2em; diff --git a/views/about.html b/views/about.html index 00f4b2d..8676dc7 100644 --- a/views/about.html +++ b/views/about.html @@ -2,6 +2,56 @@ {% block main %} -

{{ pageTitle }}

+

Tor

+
+

Tor is free software for enabling anonymous communication. This application allows you to view information on the individual nodes that make up the Tor network. All information is provided by the Onionoo API.

+

If you've never used Tor before, why not give it a go, it's really easy to use, just download the Tor Browser Bundle and fire it up. If you find Tor useful, maybe consider running a relay.

+

"Tor" and the "Onion Logo" are registered trademarks of The Tor Project, Inc.

+
+ +
+ +
+

Search

+
+

You can search for Tor nodes by entering part of the nickname, hash or IP address into the search bar. Filters are also accepted, they can be used by specifying an Onionoo parameter and value separated by a colon, e.g country:gb, contact:luke or flag:Fast.

+

To search for nodes in Great Britain that contain the string "jug" in their nickname you would search for jug country:gb.

+

View all Onionoo parameters. +

+
+ +
+

Flag Descriptions

+
+
Authority
+
if the router is a directory authority.
+
BadExit
+
if the router is believed to be useless as an exit node (because its ISP censors it, because it is behind a restrictive proxy, or for some similar reason).
+
Exit
+
if the router is more useful for building general-purpose exit circuits than for relay circuits. The path building algorithm uses this flag; see path-spec.txt.
+
Fast
+
if the router is suitable for high-bandwidth circuits.
+
Guard
+
if the router is suitable for use as an entry guard.
+
HSDir
+
if the router is considered a v2 hidden service directory.
+
Named
+
if the router's identity-nickname mapping is canonical, and this authority binds names.
+
NoEdConsensus
+
if any Ed25519 key in the router's descriptor or microdesriptor does not reflect authority consensus.
+
Stable
+
if the router is suitable for long-lived circuits.
+
Running
+
if the router is currently usable.
+
Unnamed
+
if another router has bound the name used by this router, and this authority binds names.
+
Valid
+
if the router has been 'validated'.
+
V2Dir
+
if the router implements the v2 directory protocol or higher.
+
+
+ +
{% endblock %}