From 9b48134d91de7ef4440be29a18d42815257131b4 Mon Sep 17 00:00:00 2001
From: Ore Agunbiade
Date: Thu, 11 Jun 2020 18:14:27 -0600
Subject: [PATCH 1/5] Add subprocessors table data
---
_data/subprocessors.yml | 44 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
create mode 100644 _data/subprocessors.yml
diff --git a/_data/subprocessors.yml b/_data/subprocessors.yml
new file mode 100644
index 000000000..3f932b3b8
--- /dev/null
+++ b/_data/subprocessors.yml
@@ -0,0 +1,44 @@
+- name: DocuSign
+ purpose: Customer contracts
+ country: USA
+ website: https://docusign.com
+
+- name: GitHub
+ purpose: Private git repo access to customers
+ country: USA
+ website: https://github.com
+
+- name: Google
+ purpose: Customer data collection
+ country: USA
+ website: https://google.com
+
+- name: MailChimp
+ purpose: Email newsletters
+ country: USA
+ website: https://mailchimp.com
+
+- name: Slack
+ purpose: Customer support
+ country: USA
+ website: https://slack.com
+
+- name: Stripe
+ purpose: Customer payment information
+ country: USA
+ website: https://stripe.com
+
+- name: Teachable
+ purpose: Video training
+ country: USA
+ website: https://teachable.com
+
+- name: Zapier
+ purpose: Internal automation
+ country: USA
+ website: https://zapier.com
+
+- name: ZenDesk
+ purpose: Customer support
+ country: USA
+ website: https://zendesk.com
From 7b1e99aebb75b7cea6d9a5c6521ecd766b58fff6 Mon Sep 17 00:00:00 2001
From: Ore Agunbiade
Date: Thu, 11 Jun 2020 18:15:13 -0600
Subject: [PATCH 2/5] Add subprocessors index page
---
pages/subprocessors/index.html | 54 ++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
create mode 100644 pages/subprocessors/index.html
diff --git a/pages/subprocessors/index.html b/pages/subprocessors/index.html
new file mode 100644
index 000000000..6eb5895fc
--- /dev/null
+++ b/pages/subprocessors/index.html
@@ -0,0 +1,54 @@
+---
+layout: default
+title: Subprocessors
+modified_date: April 20, 2020
+permalink: /legal/subprocessors/
+redirect_from: /subprocessors/
+slug: subprocessors
+---
+
+
+
+
+
+
+
{{ page.title }}
+
Last Updated: {{ page.modified_date }}
+
+
+
+
+
+ Gruntwork uses some data subprocessors to support the delivery of
+ our service.
+
+
+
What is a Subprocessor?
+
+ A subprocessor is a data processor, engaged by Gruntwork, that
+ stores or transmits some of the customer information we collect and
+ is necessary to support the delivery of the Gruntwork service.
+
+
+
Subscribe to Updates to the Subprocessor List
+
+ Gruntwork will make updates to the subprocessor list via this
+ website. To subscribe to updates to the subprocessor list, copy the
+ following link into your preferred RSS reader:
+ https://gruntwork.io/legal/rss.
+
+
+
Customer Data Subprocessors
+
+ Gruntwork needs a limited amount of data to provide the Gruntwork
+ service to customers and therefore relies on a small number of data
+ subprocessors. The following is a list of subprocessors involved in
+ the transmission and/or storage of customer data:
+
+
+ {% include_relative _subprocessors-table.html %}
+
+
+
+
+
From 7ed4e33bba154ca9f258496b34ab541a59a0bc9e Mon Sep 17 00:00:00 2001
From: Ore Agunbiade
Date: Thu, 11 Jun 2020 18:15:41 -0600
Subject: [PATCH 3/5] Add subprocessors table markup
---
pages/subprocessors/_subprocessors-table.html | 32 +++++++++++++++++++
1 file changed, 32 insertions(+)
create mode 100644 pages/subprocessors/_subprocessors-table.html
diff --git a/pages/subprocessors/_subprocessors-table.html b/pages/subprocessors/_subprocessors-table.html
new file mode 100644
index 000000000..f1174af15
--- /dev/null
+++ b/pages/subprocessors/_subprocessors-table.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+ | Third-Party Service |
+ Purpose |
+ Entity Country |
+ Website |
+
+
+
+ {% for subprocessor in site.data.subprocessors %}
+
+ |
+ {{ subprocessor.name }}
+ |
+
+ {{ subprocessor.purpose }}
+ |
+
+ {{ subprocessor.country }}
+ |
+
+ {{ subprocessor .website }}
+ |
+
+ {% endfor %}
+
+
+
+
From cac7968698797613d4e087366df1891347a57f6f Mon Sep 17 00:00:00 2001
From: Ore Agunbiade
Date: Thu, 11 Jun 2020 18:16:53 -0600
Subject: [PATCH 4/5] Combine styles for legal pages
---
assets/css/app.less | 3 +--
assets/css/pages/cookie-policy.less | 5 -----
assets/css/pages/legal.less | 7 +++++++
assets/css/pages/privacy-policy.less | 5 -----
4 files changed, 8 insertions(+), 12 deletions(-)
delete mode 100644 assets/css/pages/cookie-policy.less
create mode 100644 assets/css/pages/legal.less
delete mode 100644 assets/css/pages/privacy-policy.less
diff --git a/assets/css/app.less b/assets/css/app.less
index c82bd63fd..f8e0af3eb 100644
--- a/assets/css/app.less
+++ b/assets/css/app.less
@@ -17,8 +17,7 @@
@import "guides";
// Import page-specific styles
-@import "pages/cookie-policy";
-@import "pages/privacy-policy";
+@import "pages/legal";
@import "pages/support";
@import "pages/library";
@import "pages/pricing";
diff --git a/assets/css/pages/cookie-policy.less b/assets/css/pages/cookie-policy.less
deleted file mode 100644
index b9b981405..000000000
--- a/assets/css/pages/cookie-policy.less
+++ /dev/null
@@ -1,5 +0,0 @@
-.page-cookie-policy {
- .container > .row + .row {
- padding-top: 28px;
- }
-}
diff --git a/assets/css/pages/legal.less b/assets/css/pages/legal.less
new file mode 100644
index 000000000..2de96b9b6
--- /dev/null
+++ b/assets/css/pages/legal.less
@@ -0,0 +1,7 @@
+.page-privacy-policy,
+.page-cookie-policy,
+.page-subprocessors {
+ .container > .row + .row {
+ padding-top: 28px;
+ }
+}
diff --git a/assets/css/pages/privacy-policy.less b/assets/css/pages/privacy-policy.less
deleted file mode 100644
index dce53f186..000000000
--- a/assets/css/pages/privacy-policy.less
+++ /dev/null
@@ -1,5 +0,0 @@
-.page-privacy-policy {
- .container > .row + .row {
- padding-top: 28px;
- }
-}
From 0409662d539f9b7e3af7403de31d36185ceff9b2 Mon Sep 17 00:00:00 2001
From: Ore Agunbiade
Date: Mon, 15 Jun 2020 10:51:21 -0600
Subject: [PATCH 5/5] Update subprocessor page's rss feed reference
---
pages/subprocessors/index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/subprocessors/index.html b/pages/subprocessors/index.html
index 6eb5895fc..7e3f5fb89 100644
--- a/pages/subprocessors/index.html
+++ b/pages/subprocessors/index.html
@@ -35,7 +35,7 @@ Subscribe to Updates to the Subprocessor List
Gruntwork will make updates to the subprocessor list via this
website. To subscribe to updates to the subprocessor list, copy the
following link into your preferred RSS reader:
- https://gruntwork.io/legal/rss.
+ https://gruntwork.io/legal.rss.
Customer Data Subprocessors