From 53eaa1eee93d6a88f27dabfe159c81789787701d Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Sat, 3 Aug 2024 10:48:04 -0500 Subject: [PATCH] docs: Add employee information (#2692) Signed-off-by: redoomed1 <161974310+redoomed1@users.noreply.github.com> Signed-off-by: Mare Polaris <15004290+ph00lt0@users.noreply.github.com> --- docs/about.md | 33 ++++++++++++++++++++++++--------- docs/about/donate.md | 4 ++++ docs/about/jobs.md | 11 +++++++++++ mkdocs.yml | 1 + run.sh | 2 ++ theme/main.html | 20 ++++++++++++++++++++ 6 files changed, 62 insertions(+), 9 deletions(-) create mode 100644 docs/about/jobs.md diff --git a/docs/about.md b/docs/about.md index d0884aa302..e0e5704523 100644 --- a/docs/about.md +++ b/docs/about.md @@ -20,23 +20,38 @@ schema: **Privacy Guides** is a socially motivated website that provides information for protecting your data security and privacy. We are a non-profit project with a mission to inform the public about the value of digital privacy, and about global government initiatives which aim to monitor your online activity. Our website is free of advertisements and not affiliated with any of the listed providers. -[:octicons-heart-16:{.pg-red} Make a Donation](about/donate.md){ .md-button .md-button--primary } +[:material-heart:{.pg-red} Make a Donation](about/donate.md){ .md-button .md-button--primary } [:octicons-home-16:](https://www.privacyguides.org){ .card-link title=Homepage } [:octicons-code-16:](https://github.com/privacyguides/privacyguides.org){ .card-link title="Source Code" } +## Staff + +[**Jonah Aragon**](https://www.jonaharagon.com) is the Project Director and staff writer at *Privacy Guides*. His role includes researching and writing for this website, system administration, creating *Privacy Guides Online Learning* course content, reviewing the products recommended here, and most other day-to-day tasks. + +
+ +[:simple-discourse: Discourse (preferred): @jonah](https://discuss.privacyguides.net/u/jonah) + +[:material-email: Email: jonah@privacyguides.org](mailto:jonah@privacyguides.org) + +[:simple-mastodon: Mastodon: @jonah@neat.computer](https://mastodon.neat.computer/@jonah "@jonah@neat.computer"){rel=me} + +[:simple-signal: Signal: @jonah.01](https://signal.me/#eu/dDtlmTPv09utyEJPwCHq8UYs-AVOPlys8weinr7alfdylK5G-LNIX7GasDNJdV6y) + +
+ +*The Project Director is a part-time position which reports directly to the executive committee.* + +--- + +[Open Positions :material-arrow-right-drop-circle:](about/jobs.md) + ## Executive Committee The project executive committee consists of five volunteers charged with management of the [MAGIC Privacy Guides Fund](https://magicgrants.org/funds/privacy_guides), making most critical project-related decisions.
- - :polar_bear:{ .lg .middle } **Daniel Gray** @@ -66,7 +81,7 @@ The project executive committee consists of five volunteers charged with managem --- - :material-text-account: Founder + :material-text-account: Founder, Director [:material-account: Profile](https://discuss.privacyguides.net/u/jonah) diff --git a/docs/about/donate.md b/docs/about/donate.md index f15d852c89..17e49f80d6 100644 --- a/docs/about/donate.md +++ b/docs/about/donate.md @@ -22,6 +22,10 @@ Privacy Guides is a **non-profit** organization. We use donations for a variety : Traffic to this website uses hundreds of gigabytes of data per month, we use a variety of service providers to keep up with this traffic. +**Payroll** + +: We currently have one paid part-time [position](../about.md#staff) which handles day-to-day tasks like system administration, writing regular product reviews, posting our weekly show, creating course content, etc. In the future, we would like to be able to hire full-time journalists and writers to review products and create more educational content. + **Domain Registrations** : We have a few domain names like `privacyguides.org` which cost us around $10 yearly to maintain their registration. diff --git a/docs/about/jobs.md b/docs/about/jobs.md new file mode 100644 index 0000000000..a8e8dc1f8f --- /dev/null +++ b/docs/about/jobs.md @@ -0,0 +1,11 @@ +--- +title: Job Openings +--- + +Privacy Guides has a small, remote team of privacy researchers and advocates working to further our mission of protecting free expression and promoting privacy-respecting technology. As a non-profit, we are expanding very slowly to ensure the project is sustainable in the long term. All of our staff members are listed [here](../about.md#staff). Please consider [donating](donate.md) to support our cause. + +We are occasionally looking for strong journalistic writers, product reviewers, and privacy experts to help us out, and any open positions will be posted below. + +--- + +*We do not have any job openings at the moment.* diff --git a/mkdocs.yml b/mkdocs.yml index 6351402dc6..dfd308e3cb 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -446,6 +446,7 @@ nav: - "about/criteria.md" - "about/notices.md" - "about/privacy-policy.md" + - "about/jobs.md" - !ENV [NAV_COMMUNITY, "Community"]: - !ENV [NAV_ONLINE_SERVICES, "Online Services"]: "about/services.md" - !ENV [NAV_CODE_OF_CONDUCT, "Code of Conduct"]: "CODE_OF_CONDUCT.md" diff --git a/run.sh b/run.sh index 2598837674..247027325c 100755 --- a/run.sh +++ b/run.sh @@ -131,6 +131,8 @@ markdown_extensions: exclude: - index.md - tools.md + - about.md + - about/* targets: exclude: - about/contributors.md diff --git a/theme/main.html b/theme/main.html index 6db476d955..ab14e6ccdf 100644 --- a/theme/main.html +++ b/theme/main.html @@ -91,3 +91,23 @@ {% endif %} {% endblock %} + +{% if config.theme.language == "en" %} + {% block announce %} + + We don't run ads, we don't use affiliate links, and we don't have paywalls. We rely on our readers to build this community and spread the word.
+ If you've received $3 worth of knowledge here, please donate today if you're able to. It really helps. + + + {% include ".icons/material/heart.svg" %} + + + Donate now + + + {% include ".icons/material/arrow-right.svg" %} + + +
+ {% endblock %} +{% endif %}