Skip to content

Commit 6ccd883

Browse files
authored
Merge pull request #323 from gruntwork-io/feature/subprocessor-page
Feature/subprocessor page [WWW-57]
2 parents 1669b18 + 533e7e1 commit 6ccd883

File tree

7 files changed

+138
-13
lines changed

7 files changed

+138
-13
lines changed

_data/subprocessors.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
- name: DocuSign
2+
purpose: Customer contracts
3+
country: USA
4+
website: https://docusign.com
5+
6+
- name: GitHub
7+
purpose: Private git repo access to customers
8+
country: USA
9+
website: https://github.com
10+
11+
- name: Google
12+
purpose: Customer data collection
13+
country: USA
14+
website: https://google.com
15+
16+
- name: MailChimp
17+
purpose: Email newsletters
18+
country: USA
19+
website: https://mailchimp.com
20+
21+
- name: Slack
22+
purpose: Customer support
23+
country: USA
24+
website: https://slack.com
25+
26+
- name: Stripe
27+
purpose: Customer payment information
28+
country: USA
29+
website: https://stripe.com
30+
31+
- name: Teachable
32+
purpose: Video training
33+
country: USA
34+
website: https://teachable.com
35+
36+
- name: Zapier
37+
purpose: Internal automation
38+
country: USA
39+
website: https://zapier.com
40+
41+
- name: ZenDesk
42+
purpose: Customer support
43+
country: USA
44+
website: https://zendesk.com

assets/css/app.less

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@
1717
@import "guides";
1818

1919
// Import page-specific styles
20-
@import "pages/cookie-policy";
21-
@import "pages/page-data-processing-agreement.less";
22-
@import "pages/privacy-policy";
20+
@import "pages/legal";
2321
@import "pages/support";
2422
@import "pages/library";
2523
@import "pages/pricing";

assets/css/pages/cookie-policy.less

Lines changed: 0 additions & 5 deletions
This file was deleted.

assets/css/pages/legal.less

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.page-privacy-policy,
2+
.page-cookie-policy,
3+
.page-subprocessors {
4+
.container > .row + .row {
5+
padding-top: 28px;
6+
}
7+
}

assets/css/pages/privacy-policy.less

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<div class="table-responsive">
2+
<div>
3+
<table class="table table-striped" style="min-width: 700px">
4+
<thead>
5+
<tr>
6+
<th>Third-Party Service</th>
7+
<th>Purpose</th>
8+
<th>Entity Country</th>
9+
<th>Website</th>
10+
</tr>
11+
</thead>
12+
<tbody>
13+
{% for subprocessor in site.data.subprocessors %}
14+
<tr id="{{ id }}">
15+
<th>
16+
{{ subprocessor.name }}
17+
</th>
18+
<td>
19+
{{ subprocessor.purpose }}
20+
</td>
21+
<td>
22+
{{ subprocessor.country }}
23+
</td>
24+
<td>
25+
<a href="{{ subprocessor .website }}" target="_blank">{{ subprocessor .website }}</a>
26+
</td>
27+
</tr>
28+
{% endfor %}
29+
</tbody>
30+
</table>
31+
</div>
32+
</div>

pages/subprocessors/index.html

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: default
3+
title: Subprocessors
4+
modified_date: April 20, 2020
5+
permalink: /legal/subprocessors/
6+
redirect_from: /subprocessors/
7+
slug: subprocessors
8+
---
9+
10+
<div class="main page-subprocessors">
11+
<div class="section">
12+
<div class="container">
13+
<div class="row">
14+
<div class="col-xs-12">
15+
<h1>{{ page.title }}</h1>
16+
<p><em>Last Updated: {{ page.modified_date }}</em></p>
17+
</div>
18+
</div>
19+
<div class="row">
20+
<div class="col-xs-12">
21+
<p>
22+
Gruntwork uses some data subprocessors to support the delivery of
23+
our service.
24+
</p>
25+
26+
<h2>What is a Subprocessor?</h2>
27+
<p>
28+
A subprocessor is a data processor, engaged by Gruntwork, that
29+
stores or transmits some of the customer information we collect and
30+
is necessary to support the delivery of the Gruntwork service.
31+
</p>
32+
33+
<h2>Subscribe to Updates to the Subprocessor List</h2>
34+
<p>
35+
Gruntwork will make updates to the subprocessor list via this
36+
website. To subscribe to updates to the subprocessor list, copy the
37+
following link into your preferred RSS reader:
38+
<a href="/legal.rss">https://gruntwork.io/legal.rss</a>.
39+
</p>
40+
41+
<h2>Customer Data Subprocessors</h2>
42+
<p>
43+
Gruntwork needs a limited amount of data to provide the Gruntwork
44+
service to customers and therefore relies on a small number of data
45+
subprocessors. The following is a list of subprocessors involved in
46+
the transmission and/or storage of customer data:
47+
</p>
48+
49+
{% include_relative _subprocessors-table.html %}
50+
</div>
51+
</div>
52+
</div>
53+
</div>
54+
</div>

0 commit comments

Comments
 (0)