Add browser recommendations

This commit is contained in:
Jonah Aragon 2020-05-12 14:05:51 -05:00
parent 5a351d6606
commit 03dd56bf59
No known key found for this signature in database
GPG key ID: 6A957C9A9A9429F7
7 changed files with 96 additions and 0 deletions

View file

@ -0,0 +1,16 @@
---
name: Firefox
logo: /assets/img/browsers/firefox-logo.svg
short: Firefox is fast, reliable, open-source, and respects your privacy.
website: 'https://firefox.com/'
privacy_policy: 'https://www.mozilla.org/en-US/privacy/firefox/'
platform_win: 'https://www.mozilla.org/firefox/windows/'
platform_mac: 'https://www.mozilla.org/firefox/mac/'
platform_linux: 'https://www.mozilla.org/firefox/linux/'
platform_bsd: 'https://www.freshports.org/www/firefox'
source: 'https://hg.mozilla.org/mozilla-central/'
order: 1
---
**Firefox** is a fast, reliable, open-source, privacy-respecting browser developed by Mozilla.
Unlike Google Chrome, Firefox wont track your data and send it to various companies. Firefox also allows you to simply install a number of add-ons that will improve your privacy online.<!--MORE-->

View file

@ -0,0 +1,15 @@
---
name: Tor Browser
info: Provides Anonymity
logo: /assets/img/browsers/tor-logo.svg
short: Tor Browser is your choice if you need an extra layer of anonymity.
website: 'https://www.torproject.org/'
website_tor: 'http://expyuzz4wqqyqhjn.onion/'
privacy_policy: 'https://support.torproject.org/tbb/tbb-3/'
platform_win: 'https://www.torproject.org/download/'
platform_mac: 'https://www.torproject.org/download/'
platform_linux: 'https://www.torproject.org/download/'
source: 'https://trac.torproject.org/projects/tor'
order: 2
---
Tor Browser is your choice if you need an extra layer of anonymity. It's a modified version of Firefox ESR, which comes with pre-installed privacy add-ons, encryption, and an advanced proxy. [How does Tor work?](https://write.privacytools.io/my-thoughts-on-security/slicing-onions-part-1-myth-busting-tor)

View file

@ -0,0 +1,18 @@
---
layout: evergreen
title: Browser Recommendations
---
<p class="lead">
These are our current web browser recommendations and some tweaks you can use to preserve your privacy.
</p>
{% assign firefox = site.browsers | where:"name","Firefox" %}
{% for post in firefox %}
{% include recommendation-1.html %}
{% endfor %}
{% assign tor = site.browsers | where:"name","Tor Browser" %}
{% for post in tor %}
{% include recommendation-1.html %}
{% endfor %}