Skip to content

Commit 0a3145f

Browse files
committed
Merge remote-tracking branch 'upstream/production' into jmassardo/update-page-navigation
2 parents eb8ecb0 + 692f147 commit 0a3145f

File tree

86 files changed

+178
-340
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+178
-340
lines changed

_config.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ menu:
5959
name: "Engineering"
6060
- id: genai
6161
name: "GenAI"
62-
- id: governance
63-
name: "Governance"
6462
- id: scoping
6563
name: "Scoping"
6664
- category:
@@ -76,6 +74,7 @@ menu:
7674
- id: volunteer-management
7775
name: "Volunteer Management"
7876

77+
7978
include: ["_pages"]
8079

8180
exclude:

_includes/footer.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div style="flex: 1; text-align: center; padding-right: 10px; max-width: 900px;">
44
<h5 class="h5 mb-4">Contact us</h5>
55
<p class="p-lg text-black" style="font-size: 16px;">If you would like to learn more about us, partner with
6-
us, or get in touch, email us at [email protected]</p>
6+
us, or get in touch, <a href="https://www.datakind.org/">visit our website</a> or email <a href="mailto:[email protected]">[email protected]</a>.</p>
77
</div>
88

99
<div style="flex: 1; text-align: center; padding-left: 10px; max-width: 900px;">

_includes/head.html

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
11
<head>
2+
23
<meta charset="utf-8" />
34
<meta name="viewport" content="width=device-width, initial-scale=1" />
45
<meta name="theme-color" content= "#24292e">
6+
7+
<!-- Google tag (gtag.js) -->
8+
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8KKSWX3P1J"></script>
9+
<script>
10+
window.dataLayer = window.dataLayer || [];
11+
function gtag(){dataLayer.push(arguments);}
12+
gtag('js', new Date());
13+
14+
gtag('config', 'G-8KKSWX3P1J');
15+
</script>
16+
517
<link rel="alternate" type="application/rss+xml" title="DataKind" href="/feed.xml">
618
<link rel="stylesheet" media="screen" href="/public/css/index.css" />
719
<link rel="shortcut icon" type="image/ico" href="/public/img/favicons/favicon.png" />
@@ -39,4 +51,4 @@
3951
</style>
4052
<script src="/public/js/jquery.min.js"></script>
4153

42-
</head>
54+
</head>

_includes/menu.html

+5-27
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,11 @@
88
</a>
99
</div>
1010
<ul class="desktop-navigation" style="color:black">
11-
{%- assign grouped_pages = site.pages | group_by: 'category' | sort:"name" -%}
12-
{%- for category in grouped_pages -%}
13-
{%- unless category.name == null or category.name == "" -%}
11+
{% for category in site.menu %}
1412

1513
<li class="has-sub-nav">
1614
<a href="#">
17-
<h3>{% assign cat = category.name | replace:'-',' ' | split: ' ' %}
18-
{%- capture category_name %}
19-
{%- for word in cat %}
20-
{{ word | capitalize | + " " }}
21-
{%- endfor -%} {%- endcapture -%}
22-
{{ category_name | replace: ' ', ' ' | strip | strip_newlines }}
15+
<h3>{{ category.name }}
2316
<svg height="16" class="octicon octicon-chevron-down" viewBox="0 0 16 16" version="1.1"
2417
width="16" aria-hidden="true">
2518
<path fill-rule="evenodd"
@@ -29,32 +22,17 @@ <h3>{% assign cat = category.name | replace:'-',' ' | split: ' ' %}
2922
</h3>
3023
</a>
3124
<ul class="sub-nav">
32-
{% assign sub_grouped_pages = category.items | group_by: 'subcategory' | sort:"name" %}
33-
{% for subcategory in sub_grouped_pages %}
34-
{% if subcategory.name %}
25+
{% for subcategory in category.subcategory %}
3526
<li>
36-
<a href="/{{ category.name }}/{{ subcategory.name}}">
27+
<a href="/{{ category.id }}/{{ subcategory.id}}">
3728
<h4>
38-
{%- assign subcat = subcategory.name | replace:'-',' ' | split: ' ' %}
39-
{%- capture subcategory_name %}
40-
{%- for word in subcat %}
41-
{{ word | capitalize | + " " }}
42-
{%- endfor -%}{%- endcapture -%}
43-
44-
{%- assign subcat_name = subcategory_name | replace: ' ', ' ' | strip | strip_newlines %}
45-
{%- if subcat_name == "Genai" %}
46-
GenAI
47-
{%- else %}
48-
{{ subcat_name }}
49-
{%- endif %}
29+
<li>{{ subcategory.name }}</li>
5030
</h4>
5131
</a>
5232
</li>
53-
{% endif %}
5433
{% endfor %}
5534
</ul>
5635
</li>
57-
{% endunless %}
5836
{% endfor %}
5937
</ul>
6038
{% include search.html %}

index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ The primary audience for the Playbook is DataKind volunteers to guide them in th
3636
**How do I get started?**
3737

3838
1. Explore the Playbook! Click around the various sections to get an idea of the overall structure and the types of articles it contains.
39-
2. Add your ideas, experiences, and best practices to Playbook articles.
40-
3. Use the Playbook as you’re moving forward with new projects \- review each article relevant to the project stage that you are in throughout the project process.
41-
4. Bookmark the Playbook to come back to whenever you have a question so that you can review the relevant resources at each point in the process.
39+
2. Use the Playbook as you’re moving forward with new projects \- review each article relevant to the project stage that you are in throughout the project process.
40+
3. Bookmark the Playbook to come back to whenever you have a question so that you can review the relevant resources at each point in the process.
41+
4. <a href="https://github.com/signup">Create a GitHub account</a> so you can check out our <a href="https://github.com/datakind">project repository</a> and add your ideas, experiences, and best practices to Playbook articles via pull requests.
4242

4343

4444
**I encountered an unfamiliar term, what does it mean?**

project-stages/design/consulting_additional_key_stakeholders.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Consulting Additional Key Stakeholders
44
date: 02/29/2024
5-
author: Afua Bruce, Mitali Ayyangar, Benjamin Kinsella, Cassy L Cox, Nathan Banion
5+
author: Afua Bruce, Mitali Ayyangar, Benjamin Kinsella, Cassy L Cox, Nathan Banion, Rachel Wells, Caitlin Augustin, Emily Yelverton, Daniel Nissani, Phil Azar, Mallory Sheff
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/data_audit.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Data Audit
44
subtitle:
55
date: 02/29/2024
6-
author: Benjamin Kinsella, Nathan Banion, Rachel Wells
6+
author: Benjamin Kinsella, Nathan Banion, Seward Lee, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: design

project-stages/design/data_science_software_and_tools.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Data Science Software and Tools
44
date: 02/29/2024
5-
author: Neal Fultz, Arina Igumenshcheva, Nathan Banion, Rachel Wells
5+
author: Neal Fultz, Arina Igumenshcheva, Nathan Banion, Seward Lee, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/data_storage_security_and_management_processes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: article
33
title: Data Storage, Security, and Management Processes
44
date: 02/29/2024
5-
author: Benjamin Kinsella, DKSF Chapter, Jeremy Osborn, Lawrence Kilroy, William Ratcliff, Dulcie Vousden, Edwin Zhang
5+
author: Benjamin Kinsella, DKSF Chapter, Jeremy Osborn, Lawrence Kilroy, William Ratcliff, Dulcie Vousden, Rachel Wells, Edwin Zhang
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/define_success_metrics_and_create_a_measurement_plan.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Define Success Metrics and Create a Measurement Plan
44
date: 02/29/2024
5-
author: Benjamin Kinsella
5+
author: Benjamin Kinsella, Jack Craft, Matthew Harris, Arina Igumenshcheva, Daniel Nissani, Daniel Nissani, William Ratcliff, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/design_checkpoint.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Design Checkpoint
44
date: 02/29/2024
5-
author: Benjamin Kinsella, Bhargav Kowshik, Matthew Harris, Arina Igumenshcheva, Michael Wegan
5+
author: Benjamin Kinsella, Bhargav Kowshik, Matthew Harris, Arina Igumenshcheva, Michael Wegan, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/design_stage_launch_agreements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: article
33
title: Design Stage Launch Agreements
44
date: 02/29/2024
5-
author: Benjamin Kinsella, Caroline Charrow, Gwen Hopkins, Shanna Lee, Russatta Buford
5+
author: Benjamin Kinsella, Caroline Charrow, Gwen Hopkins, Shanna Lee, Russatta Buford, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/determine_technical_methodology.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Determine Technical Methodology
44
date: 02/29/2024
5-
author: Benjamin Kinsella, Srivalya Elluru
5+
author: Benjamin Kinsella, Srivalya Elluru, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/evaluating_data_inclusion.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Evaluating Data Inclusion
44
date: 02/29/2024
5-
author: Caitlin Augustin, Benjamin Kinsella, Emily Yelverton, Jeremy Osborn, Manojit Nandi, Daniel Nissani, Phil Azar, William Ratcliff, Mallory Sheff
5+
author: Caitlin Augustin, Benjamin Kinsella, Emily Yelverton, Jeremy Osborn, Manojit Nandi, Daniel Nissani, Phil Azar, William Ratcliff, Mallory Sheff, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ articles:
1111
- title: "Design Stage Launch Agreements"
1212
filename: "design_stage_launch_agreements"
1313
date: "March 28, 2024"
14-
author: "Benjamin Kinsella"
15-
handle: "bjk127"
14+
author: "Rachel Wells"
15+
handle: "rachelauryn"
1616
- title: "Data Storage, Security, and Management Processes"
1717
filename: "data_storage_security_and_management_processes"
1818
date: "February 29, 2024"
@@ -26,8 +26,8 @@ articles:
2626
- title: "Evaluating Data Inclusion"
2727
filename: "evaluating_data_inclusion"
2828
date: "February 29, 2024"
29-
author: "Caitlin Augustin"
30-
handle: "augustincaitlin"
29+
author: "Rachel Wells"
30+
handle: "rachelauryn"
3131
- title: "Consulting Additional Key Stakeholders"
3232
filename: "consulting_additional_key_stakeholders"
3333
date: "February 29, 2024"
@@ -56,8 +56,8 @@ articles:
5656
- title: "The Project Brief and Defining Your Deliverables"
5757
filename: "the_project_brief_and_defining_your_deliverables"
5858
date: "February 29, 2024"
59-
author: "Caitlin Augustin"
60-
handle: "augustincaitlin"
59+
author: "Rachel Wells"
60+
handle: "rachelauryn"
6161
- title: "The Service Agreement"
6262
filename: "the_service_agreement"
6363
date: "February 29, 2024"
@@ -71,8 +71,8 @@ articles:
7171
- title: "Design Checkpoint"
7272
filename: "design_checkpoint"
7373
date: "February 29, 2024"
74-
author: "Benjamin Kinsella"
75-
handle: "bjk127"
74+
author: "Rachel Wells"
75+
handle: "rachelauryn"
7676
---
7777

7878
#### Introduction to the Design Stage

project-stages/design/project_risk_and_ethical_assessment.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Project Risk and Ethical Assessment
44
date: 02/29/2024
5-
author: Benjamin Kinsella, Manojit Nandi, Daniel Nissani
5+
author: Benjamin Kinsella, Manojit Nandi, Daniel Nissani, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/the_project_brief_and_defining_your_deliverables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: The Project Brief and Defining Your Deliverables
44
date: 02/29/2024
5-
author: Caitlin Augustin, Mitali Ayyangar, Benjamin Kinsella, Emily Yelverton
5+
author: Caitlin Augustin, Mitali Ayyangar, Benjamin Kinsella, Emily Yelverton, Rachel Wells, Caroline Charrow, Nathan Banion, Seward Lee
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/the_service_agreement.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: The Service Agreement
44
date: 02/29/2024
5-
author: Gwen Hopkins, Shanna Lee, Russatta Buford
5+
author: Gwen Hopkins, Shanna Lee, Russatta Buford, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/design/when_to_pause_design.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: When to Pause, Discontinue, or Decline a Project in the Design Stage
44
date: 02/29/2024
5-
author: Caitlin Augustin, Mitali Ayyangar, Benjamin Kinsella, Emily Yelverton, Arina Igumenshcheva, Mallory Sheff
5+
author: Caitlin Augustin, Mitali Ayyangar, Benjamin Kinsella, Emily Yelverton, Arina Igumenshcheva, Mallory Sheff, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: design

project-stages/discovery/assessing_data_maturity.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Assessing Data Maturity
44
subtitle:
55
date: 02/29/2024
6-
author: Mitali Ayyangar, Benjamin Kinsella, Caroline Charrow, Emily Yelverton, Dulcie Vousden
6+
author: Mitali Ayyangar, Benjamin Kinsella, Caroline Charrow, Emily Yelverton, Dulcie Vousden, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: design

project-stages/discovery/concept_note_and_discover_documentation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Concept Note and Discover Documentation
44
subtitle:
55
date: 02/29/2024
6-
author: Benjamin Kinsella, Mallory Sheff
6+
author: Benjamin Kinsella, Mallory Sheff, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: discovery

project-stages/discovery/consider_existing_solutions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Consider Existing Solutions
44
subtitle:
55
date: 02/29/2024
6-
author: Daniel Nissani
6+
author: Daniel Nissani, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: discovery

project-stages/discovery/data_discovery.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Data Discovery
44
subtitle:
55
date: 02/29/2024
6-
author: Benjamin Kinsella, Matthew Harris, Seward Lee
6+
author: Benjamin Kinsella, Matthew Harris, Seward Lee, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: discovery

project-stages/discovery/discovery_calls.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Discovery Calls
44
date: 02/29/2024
5-
author: Caitlin Augustin, Caroline Charrow, Jack Craft, Erin Antcliffe, Matthew Harris, Arina Igumenshcheva, Ben Lebovitz, Sebastien Ouellet, Srivalya Elluru, Dulcie Vousden, Rachel Wells
5+
author: Caitlin Augustin, Caroline Charrow, Jack Craft, Erin Antcliffe, Matthew Harris, Arina Igumenshcheva, Ben Lebovitz, Sebastien Ouellet, Seward Lee, Srivalya Elluru, Dulcie Vousden, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: discovery

project-stages/discovery/discovery_resources.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Discovery Resources
44
subtitle:
55
date: 02/29/2024
6-
author: Danning Chen, Matthew Harris, Nathan Banion, Mallory Sheff, Benjamin Kinsella, Shanna Lee
6+
author: Benjamin Kinsella, Matthew Harris, Shanna Lee, Mallory Sheff, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: discovery

project-stages/discovery/drafting_impact_maps_and_project_statements.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ layout: default
33
title: Drafting Impact Maps and Project Statements
44
subtitle:
55
date: 02/29/2024
6-
author: Mitali Ayyangar, Cassy L Cox, Shanna Lee, Daniel Nissani, Jake Porway
6+
author: Mitali Ayyangar, Cassy L Cox, Shanna Lee, Daniel Nissani, Jake Porway, Rachel Wells
77
audience: DataKind Volunteers
88
category: project-stages
99
subcategory: discovery

project-stages/discovery/identifying_successful_project_champions_and_executive_sponsors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
layout: default
33
title: Identifying successful Project Champions and Executive Sponsors
44
date: 02/29/2024
5-
author: Benjamin Kinsella, Caroline Charrow, Rachel Wells
5+
author: Benjamin Kinsella, Caroline Charrow, Seward Lee, Rachel Wells
66
audience: DataKind Volunteers
77
category: project-stages
88
subcategory: discovery

0 commit comments

Comments
 (0)