From bdcd3740dd7132304951e08ada0a32b9ad2dc685 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Sat, 16 Nov 2019 20:31:33 +0100 Subject: [PATCH] Implement redesigned mocks for the landing page --- layouts/index.html | 353 +++++++----------- layouts/partials/nav.html | 72 ++-- layouts/post/single.html | 14 +- layouts/section/about.html | 16 +- layouts/section/data.html | 14 +- layouts/section/get-involved.html | 20 +- layouts/section/install.html | 14 +- layouts/section/nettest.html | 15 +- layouts/section/post.html | 14 +- static/css/fonts.css | 8 +- static/css/master.css | 199 ++++++++-- static/fonts/fira-sans-regular.woff | Bin 0 -> 183268 bytes static/images/homepage/Desktop HD.png | Bin 0 -> 623415 bytes .../Explorer-HorizontalMonochromeInverted.png | Bin 0 -> 5962 bytes ...plorer-HorizontalMonochromeInverted@2x.png | Bin 0 -> 13529 bytes static/images/homepage/Flat Browser.png | Bin 0 -> 71582 bytes static/images/homepage/OONI Probe phone.png | Bin 0 -> 63033 bytes .../images/homepage/OONI Probe phone@2x.png | Bin 0 -> 156086 bytes .../OONI-HorizontalMonochromeInverted.png | Bin 0 -> 1862 bytes .../OONI-HorizontalMonochromeInverted@2x.png | Bin 0 -> 4400 bytes static/images/homepage/OONI-VerticalColor.png | Bin 0 -> 17528 bytes .../images/homepage/OONI-VerticalColor@2x.png | Bin 0 -> 38925 bytes static/images/homepage/Pixel X2 - White.png | Bin 0 -> 156086 bytes .../Probe-HorizontalMonochromeInverted.png | Bin 0 -> 5465 bytes .../Probe-HorizontalMonochromeInverted@2x.png | Bin 0 -> 12165 bytes static/images/homepage/cloud-center-full.png | Bin 0 -> 3821 bytes .../images/homepage/cloud-center-full@2x.png | Bin 0 -> 8547 bytes static/images/homepage/cloud-left-double.png | Bin 0 -> 3380 bytes .../images/homepage/cloud-left-double@2x.png | Bin 0 -> 7889 bytes static/images/homepage/cloud-right-high.png | Bin 0 -> 1773 bytes .../images/homepage/cloud-right-high@2x.png | Bin 0 -> 3786 bytes static/images/homepage/cloud-right-low.png | Bin 0 -> 2150 bytes static/images/homepage/cloud-right-low@2x.png | Bin 0 -> 4736 bytes static/images/homepage/code-braces.png | Bin 0 -> 690 bytes static/images/homepage/code-braces@2x.png | Bin 0 -> 1265 bytes static/images/homepage/comment-o.png | Bin 0 -> 1150 bytes static/images/homepage/comment-o@2x.png | Bin 0 -> 2370 bytes static/images/homepage/database.png | Bin 0 -> 1060 bytes static/images/homepage/database@2x.png | Bin 0 -> 2285 bytes static/images/homepage/explorer-browser.png | Bin 0 -> 61785 bytes .../images/homepage/explorer-browser@2x.png | Bin 0 -> 173218 bytes static/images/homepage/jumping-fish.png | Bin 0 -> 6289 bytes static/images/homepage/jumping-fish@2x.png | Bin 0 -> 13785 bytes static/images/homepage/ooni-logo-small.png | Bin 0 -> 1754 bytes static/images/homepage/ooni-logo-small@2x.png | Bin 0 -> 4012 bytes static/images/homepage/wavy-sea-pattern.png | Bin 0 -> 8694 bytes .../images/homepage/wavy-sea-pattern@2x.png | Bin 0 -> 21933 bytes 47 files changed, 368 insertions(+), 371 deletions(-) create mode 100644 static/fonts/fira-sans-regular.woff create mode 100644 static/images/homepage/Desktop HD.png create mode 100644 static/images/homepage/Explorer-HorizontalMonochromeInverted.png create mode 100644 static/images/homepage/Explorer-HorizontalMonochromeInverted@2x.png create mode 100644 static/images/homepage/Flat Browser.png create mode 100644 static/images/homepage/OONI Probe phone.png create mode 100644 static/images/homepage/OONI Probe phone@2x.png create mode 100644 static/images/homepage/OONI-HorizontalMonochromeInverted.png create mode 100644 static/images/homepage/OONI-HorizontalMonochromeInverted@2x.png create mode 100644 static/images/homepage/OONI-VerticalColor.png create mode 100644 static/images/homepage/OONI-VerticalColor@2x.png create mode 100644 static/images/homepage/Pixel X2 - White.png create mode 100644 static/images/homepage/Probe-HorizontalMonochromeInverted.png create mode 100644 static/images/homepage/Probe-HorizontalMonochromeInverted@2x.png create mode 100644 static/images/homepage/cloud-center-full.png create mode 100644 static/images/homepage/cloud-center-full@2x.png create mode 100644 static/images/homepage/cloud-left-double.png create mode 100644 static/images/homepage/cloud-left-double@2x.png create mode 100644 static/images/homepage/cloud-right-high.png create mode 100644 static/images/homepage/cloud-right-high@2x.png create mode 100644 static/images/homepage/cloud-right-low.png create mode 100644 static/images/homepage/cloud-right-low@2x.png create mode 100644 static/images/homepage/code-braces.png create mode 100644 static/images/homepage/code-braces@2x.png create mode 100644 static/images/homepage/comment-o.png create mode 100644 static/images/homepage/comment-o@2x.png create mode 100644 static/images/homepage/database.png create mode 100644 static/images/homepage/database@2x.png create mode 100644 static/images/homepage/explorer-browser.png create mode 100644 static/images/homepage/explorer-browser@2x.png create mode 100644 static/images/homepage/jumping-fish.png create mode 100644 static/images/homepage/jumping-fish@2x.png create mode 100644 static/images/homepage/ooni-logo-small.png create mode 100644 static/images/homepage/ooni-logo-small@2x.png create mode 100644 static/images/homepage/wavy-sea-pattern.png create mode 100644 static/images/homepage/wavy-sea-pattern@2x.png diff --git a/layouts/index.html b/layouts/index.html index 2864242f0..8e3c2d1bd 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,228 +1,145 @@ {{ partial "head.html" . }} - - Fork me on GitHub - -
- - -
+{{ partial "nav.html" }} + +
+
+
+ + + + + +
+
+
+ +

A global community uncovering internet censorship

+
+
+
+
-
- -
-
- OONI -

Open Observatory of Network Interference

-

A free software, global observation network for detecting censorship, - surveillance and traffic manipulation on the internet

-
-
-
-
- -
-
-
-
-
-

OONI Explorer

-

OONI has been monitoring internet censorship around the world since 2012

-

Explore OONI Data

-
- -
- -
-
+
+ +

Measure internet censorship

+

With OONI Probe you are able to collect evidence of internet censorship around the world. It is available for mobile and desktop.

+ Install OONI Probe +
+
+ OONI Probe mobile app +
+
+
+ + +
+
+

Recent Reports

+
+ {{ range first 5 (where (where .Site.Pages.ByDate.Reverse "Section" "post") "Kind" "page") }} + + {{ end }} + View All +
+
+ +
+
+
+
+ OONI Probe mobile app +
+
+ +

Uncover evidence of internet censorship worldwide

+

+ OONI Explorer is an open data resource on internet censorship around the world containing millions of measurements since 2012 from over 200 countries around the world. +

+ Explore OONI Data +
+
+
+
+ +
+
+

Recent News

+
+ {{ range first 5 (where (where .Site.Pages.ByDate.Reverse "Section" "post") "Kind" "page") }} + + {{ end }} + View All +
+
+ +
+
+
+
+ +

Join us

+

+ Join us on the public OONI slack (bridged via IRC #ooni on OFTC) + or on the + ooni-talk and + ooni-dev mailing lists + to discuss the project, what you've learned from measurements and ways + you can help out. +

+ Get Involved
+
+
+
+ +

Hack on some code

+

+ Source code + is available + Issues and future plans for OONI can be found on github. +

+ Fork OONI on Github
-
-
-

What OONI does

-
-

OONI develops free software tests designed to examine the following:

-
-
    -
  • Blocking of websites -
  • Blocking of instant messaging apps -
  • Blocking of Tor and other circumvention tools -
  • Detection of systems that could be responsible for censorship and/or surveillance - -

    Testing methodology

    -

    There are risks. Running a probe involves testing - connections to websites that may be banned and using tools to attempt - circumventing web censorship. It is not designed to protect the privacy - of those running probes. Measurements are published and can include IP - addresses or other identifying information.

    -

    More about the risks

    -
-
-
- -
-
-
-
-

How OONI Works

-

OONI scans TCP, DNS, HTTP and TLS connections for tampering. Some tests - work by requesting data over an unencrypted connection and comparing - against a known good value. Others check for DNS spoofing, keyword - filtering, transparent proxying and website block lists.

-
-
- -
-
-
-
- - -
- - - - -
-
-

Blog Posts

-
-
- {{ range first 5 (where (where .Site.Pages.ByDate.Reverse "Section" "post") "Kind" "page") }} - -

{{ .Title }}

- -
- {{ end }} - Read More -
-
- -
-
-

Getting Involved

-
-
-

Join us in IRC #ooni on OFTC (or via a slack bridge) - or on the - ooni-talk and - ooni-dev mailing lists - to discuss the project, what you've learned from measurements and ways - you can help out. -

-

If you are contributing regular ooniprobe measurements be sure to also subscribe to - ooni-operators for important updates. -

-

Source code - is available (Tor project mirror). - Issues and future plans for OONI can be found on github.

-
-
- -
-
-

Contact

-
-
-

To contact the OONI team send an email to contact@openobservatory.org - Encrypted emails can be sent using the following PGP key:

-

- Key ID: 6B2943F00CB177B7
- Fingerprint: 4C15 DDA9 96C6 C0CF 48BD 3309 6B29 43F0 0CB1 77B7 -

-

- We can also be reached on Jabber. -

-
-
- - +
+
+ +
+
+
+ +

What is OONI?

+

+ The Open Observatory of Network Interference (OONI) is a free software + project which aims to empower decentralized efforts in increasing + transparency of internet censorship around the world. +

+ About OONI + Frequently Asked Questions
-
+ +
+ +

Access the OONI data

+

+ Check out the different ways to access the OONI dataset. +

+ Raw OONI measurement data + Read how the tests work +
+ +