Remove '14 Eyes' info and legacy pages (#504)

Co-authored-by: Jonah Aragon <jonah@triplebit.net>
This commit is contained in:
Tommy 2021-12-31 22:40:35 -05:00 committed by GitHub
parent b4ce9391b5
commit 5e32dcfa88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 2 additions and 151 deletions

View File

@ -11,9 +11,6 @@ layout: default
<div class="col">
<ul class="list-unstyled">
<li><i class="fas fa-home"></i> <a href="/">Back to our Homepage</a></li>
<li><i class="fas fa-server"></i> <a href="/providers/">Privacy Focused Service Providers</a></li>
<li><i class="fas fa-compass"></i> <a href="/browsers/">Privacy Protecting Web Browsers</a></li>
<li><i class="fas fa-window-restore"></i> <a href="/software/">Privacy-Centric Software</a></li>
</ul>
</div>
</div>

View File

@ -5,8 +5,3 @@ items:
title: Threat Modeling
icon: fad fa-bullseye-arrow
file: _evergreen/threat-modeling.html
- type: link
title: Global Mass Surveillance
icon: fad fa-drone-alt
file: legacy_pages/providers.html
anchor: ukusa

View File

@ -1,30 +0,0 @@
<div class="mb-5 d-flex">
<div class="flex-grow-1">
<nav id="breadcrumb" aria-label="breadcrumb">
{% assign crumbs = page.url | remove:'/index.html' | split: '/' %}
<ol class="breadcrumb" itemscope itemtype="https://schema.org/BreadcrumbList">
<li class="breadcrumb-item">
<a href="/" class="text-decoration-none text-gray"><i class="fas fa-home" aria-hidden="true"></i> <span class="text-decoration-underline">Home</span></a>
</li>
{% for crumb in crumbs offset: 1 %}
{% if forloop.last %}
<li class="breadcrumb-item active" aria-current="page" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<link href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}" itemprop="item" />
<span itemprop="name">{% if page.breadcrumb %}{{ page.breadcrumb }}{% else %}{% assign words = crumb | replace:'-',' ' | remove:'.html' | split: ' ' %}{% capture titlecase %}{% for word in words %}{{ word | capitalize }} {% endfor %}{% endcapture %}{{ titlecase }}{% endif %}
</span>
<meta itemprop="position" content="{{ forloop.index }}" />
</li>
{% else %}
<li class="breadcrumb-item" itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
<a class="text-gray" href="{% assign crumb_limit = forloop.index | plus: 1 %}{% for crumb in crumbs limit: crumb_limit %}{{ crumb | append: '/' | replace:'without-plugin/','without-plugins/' }}{% endfor %}" itemprop="item"><span itemprop="name">{{ crumb | replace:'-',' ' | remove:'.html' | capitalize }}</span></a>
<meta itemprop="position" content="{{ forloop.index }}" />
</li>
{% endif %}
{% endfor %}
</ol>
</nav>
</div>
<div class="ps-3">
<a class="btn btn-outline-gray" href="https://github.com/privacyguides/privacyguides.org/edit/main/{%- if page.collection -%}collections/{%- endif -%}{{ page.path }}" role="button"><i class="fad fa-fw fa-pencil-alt"></i> Edit on GitHub</a>
</div>
</div>

View File

@ -8,6 +8,5 @@ layout: default
</p>{% endif %}
{{ content }}
{% include hr.html %}
{% include breadcrumbs.html %}
{% include footer.html %}
</div>

View File

@ -2,7 +2,6 @@
layout: default
---
<div class="container my-5">
{% include breadcrumbs.html %}
<div class="d-flex flex-row my-5 align-items-center">
{% if page.logo %}<div class="w-50 d-none d-lg-block text-center">
<img src="{{ page.logo }}" alt="{{ page.title }} logo" width="128px" height="128px" class="">
@ -21,6 +20,5 @@ layout: default
{{ content }}
{% include downloads.html %}
{% include hr.html %}
{% include breadcrumbs.html %}
{% include footer.html %}
</div>

View File

@ -15,7 +15,6 @@ $card-bg: lighten( $dark, 5% );
$body-color: $light;
$link-color: lighten( $link-color, 30% );
$mark-bg: darken( $primary, 60% );
$breadcrumb-bg: lighten( $dark, 5% );
$hr-border-color: $body-color;
@import "./node_modules/bootstrap/scss/variables";

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 296 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 1004 KiB

View File

@ -2,7 +2,6 @@
layout: page
title: "Encrypted DNS Resolvers"
description: "Don't let Google see all your DNS traffic. Discover privacy-centric alternatives to the traditional DNS providers."
breadcrumb: "DNS"
---
<div class="alert alert-warning" role="alert">

View File

@ -45,59 +45,6 @@ layout: default
</div>
<div class="p-5 bg-secondary text-dm-100">
<div class="container">
<div class="row mt-3">
<div class="col text-center">
<h2>Privacy Tools</h2>
<p>The devices, software, and services that will protect your privacy highly depend on your use case, workflow, and threat model. But, if you don't know where to get started, we've chosen some recommended tools to get you going :)</p>
</div>
</div>
<div class="row mb-5">
<div class="col-6 col-sm-4 col-md-3 mt-3">
<a href="/browsers/">
<div class="card text-center mx-auto" style="width: 95%; max-width: 160px;">
<div class="card-body">
<span class="card-title display-4"><i class="fal fa-compass mb-3" aria-hidden="true"></i></span>
<p class="card-subtitle">Browsers</p>
</div>
</div>
</a>
</div>
<div class="col-6 col-sm-4 col-md-3 mt-3">
<a href="/software/">
<div class="card text-center mx-auto" style="width: 95%; max-width: 160px;">
<div class="card-body">
<span class="card-title display-4"><i class="fal fa-file-code mb-3" aria-hidden="true"></i></span>
<p class="card-subtitle">Software</p>
</div>
</div>
</a>
</div>
<div class="col-6 col-sm-4 col-md-3 mt-3">
<a href="/operating-systems/">
<div class="card text-center mx-auto" style="width: 95%; max-width: 160px;">
<div class="card-body">
<span class="card-title display-4"><i class="fal fa-desktop mb-3" aria-hidden="true"></i></span>
<p class="card-subtitle">OS</p>
</div>
</div>
</a>
</div>
<div class="col-6 col-sm-4 col-md-3 mt-3">
<a href="/providers/">
<div class="card text-center mx-auto" style="width: 95%; max-width: 160px;">
<div class="card-body">
<span class="card-title display-4"><i class="fal fa-cloud mb-3" aria-hidden="true"></i></span>
<p class="card-subtitle">Providers</p>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<div class="container py-3">
<div class="row">
<div class="col text-center">

View File

@ -1,24 +0,0 @@
---
layout: page
permalink: /providers/
title: "Providers"
description: "There's a ton of people providing services online. Discover which ones you should avoid and our recommendations for a variety of services."
---
<div class="card card-list">
<ul class="list-group list-group-flush">
<li class="list-group-item"><a href="/cloud/"><span class="fad fa-cloud fa-fw"></span> Cloud Storage</a></li>
<li class="list-group-item"><a href="/providers/dns/"><span class="fa fa-tasks fa-fw"></span> DNS</a></li>
<li class="list-group-item"><a href="/providers/email/"><span class="fas fa-mail-bulk fa-fw"></span> Email</a></li>
<li class="list-group-item"><a href="/search-engines/"><i class="fas fa-search fa-fw"></i> Search Engines</a></li>
<li class="list-group-item"><a href="/providers/social-networks/"><span class="fas fa-expand-arrows-alt fa-fw"></span> Social Networks</a></li>
<li class="list-group-item"><a href="/providers/social-news-aggregator/"><span class="far fa-newspaper fa-fw"></span> Social News Aggregators</a></li>
<li class="list-group-item"><a href="/providers/vpn/"><span class="far fa-eye-slash fa-fw"></span> VPN</a></li>
</ul>
</div>
{% include legacy/sections/fourteen-eyes.html %}
{% include legacy/sections/key-disclosure-law.html %}
{% include legacy/sections/warrant-canary.html %}

View File

@ -18,7 +18,7 @@ description: "Find a secure email provider that will keep your privacy in mind.
<div class="row">
<div class="col-12">
<h3>{% include badge.html color="info" text="Jurisdiction" %}</h3>
<p>Operating outside the five/nine/fourteen-eyes countries is not necessarily a guarantee of privacy, and there are other factors to consider. However, we believe that avoiding these countries is important if you wish to avoid mass government dragnet surveillance, especially from the United States. Read our page on <a href="/providers/#ukusa">global mass surveillance and avoiding the US and UK</a> to learn more about why we feel this is important.</p>
<p>Operating outside the five/nine/fourteen-eyes countries is not necessarily a guarantee of privacy, and there are other factors to consider.</p>
</div>
<div class="col-md-6">
<p><strong>Minimum to Qualify:</strong></p>

View File

@ -3,7 +3,6 @@ layout: page
permalink: /providers/vpn/
title: "VPN Services"
description: "Find a no-logging VPN operator who isn't out to sell or read your web traffic."
breadcrumb: "VPN"
---
<div class="card border-danger">
@ -30,7 +29,7 @@ breadcrumb: "VPN"
<div class="row">
<div class="col-12">
<h3>{% include badge.html color="info" text="Jurisdiction" %}</h3>
<p>Operating outside the five/nine/fourteen-eyes countries is not a guarantee of privacy necessarily, and there are other factors to consider. However, we believe that avoiding these countries is important if you wish to avoid mass government dragnet surveillance, especially from the United States. Read our page on <a href="/providers/#ukusa">global mass surveillance and avoiding the US and UK</a> to learn more about why we feel this is important.</p>
<p>Operating outside the five/nine/fourteen-eyes countries is not a guarantee of privacy necessarily, and there are other factors to consider. However, we believe that avoiding these countries is important if you wish to avoid mass government dragnet surveillance, especially from the United States.</p>
</div>
<div class="col-md-6">
<p><strong>Minimum to Qualify:</strong></p>

View File

@ -1,23 +0,0 @@
---
layout: page
permalink: /software/
title: "Software"
description: "Discover a variety of open-source software built to protect your privacy and keep your digital data secure."
---
<p>Click on whatever software you need to view our recommendations.</p>
<div class="card card-list">
<ul class="list-group list-group-flush">
<li class="list-group-item"><a href="/software/calendar-contacts/"><span class="fas fa-calendar fa-fw"></span> Calendar/Contacts Sync Tools</a></li>
<li class="list-group-item"><a href="/software/notebooks/"><span class="far fa-sticky-note fa-fw"></span> Digital Notebook</a></li>
<li class="list-group-item"><a href="/software/email/"><span class="fas fa-envelope fa-fw"></span> Email Clients</a></li>
<li class="list-group-item"><a href="/software/productivity/#encrypt"><span class="fas fa-lock fa-fw"></span> File Encryption</a></li>
<li class="list-group-item"><a href="/software/file-sharing/"><span class="fas fa-file-export fa-fw"></span> File Sharing</a></li>
<li class="list-group-item"><a href="/software/passwords/"><span class="fas fa-user-lock fa-fw"></span> Password Manager</a></li>
<li class="list-group-item"><a href="/software/productivity/"><span class="fas fa-briefcase fa-fw"></span> Productivity Tools</a></li>
<li class="list-group-item"><a href="/real-time-communication/"><span class="fas fa-comments fa-fw"></span> Real-Time Communication</a></li>
<li class="list-group-item"><a href="/software/networks/"><span class="fas fa-user-secret fa-fw"></span> Self-contained Networks</a></li>
<li class="list-group-item"><a href="/video-streaming"><span class="fab fa-youtube fa-fw"></span> Video Streaming</a></li>
</ul>
</div>

View File

@ -3,7 +3,6 @@ layout: page
permalink: /software/calendar-contacts/
title: "Calendar and Contact Sync Tools"
description: "Discover free, open-source, and secure ways to sync your contacts and calendars across your devices."
breadcrumb: "Calendar and Contacts"
---
{% include legacy/sections/calendar-contacts-sync.html %}