Data Files Guide for Field Guide

This guide documents the structure and usage of YAML data files in the _data/ directory. These files provide structured data that drives navigation, downloads, checklists, and other dynamic content across the site.

Table of Contents


Overview

The Field Guide uses YAML data files to separate content from presentation. Data files enable:

Data Directory Structure:

_data/
├── nav.yml                              # Site navigation hierarchy
├── voices.yml                           # Voices from the Field order
├── community-building-experiences.yml   # Experience definitions
├── community-building-techniques.yml    # Technique definitions
├── templates-downloads/
│   ├── catalytic-funding.yml            # Downloads for catalytic funding pages
│   └── community-building.yml           # Downloads for community building pages
├── related-external-links/
│   ├── catalytic-funding.yml            # External links for catalytic funding
│   └── community-building.yml           # External links for community building
└── checklists/
    ├── catalytic-funding_application-components.yml
    ├── catalytic-funding_info-session-tasks.yml
    └── ...

File: _data/nav.yml

Purpose: Defines the entire site navigation hierarchy used in the sidebar and menus

Structure:

- title: Section Title           # Top-level section
  pages:                          # Pages within section (optional)
    - title: Page Title           # Direct page in section
    - title: Group Title          # Sub-group
      pages:                      # Pages within group
        - title: Page Title
        - title: Another Page

Example:

- title: Introduction
  pages:
    - title: Foreword
    - title: How to Use This Guide

- title: Catalytic Funding
  pages:
    - title: What Is Catalytic Funding?

    - title: Planning & Preparing
      pages:
        - title: Program Design
        - title: Fundraising

    - title: Cultivating Applicants
      pages:
        - title: Application Design
        - title: Program Launch & Announcement
        - title: Applicant Outreach & Info Sessions

- title: Community Building
  pages:
    - title: What Is Community Building?

    - title: Experiences
      pages:
        - title: Planning
        - title: Ideation
        - title: Showcase

Key Points:

How it’s used:

Modifying navigation:

  1. Edit _data/nav.yml
  2. Add/remove/reorder pages
  3. Ensure titles match page frontmatter
  4. Rebuild Jekyll to see changes

Voices (voices.yml)

File: _data/voices.yml

Purpose: Defines the display order of Voices from the Field profiles

Structure:

- title: Person Name
- title: Another Person
- title: Third Person

Example:

- title: Sarah Allen
- title: Sunanna Chand
- title: Kenny Chen
- title: Sam Dyson
- title: Nathan Darity
- title: Josiah Gilliam
- title: Cricket Fuller
- title: Christine Marty
- title: Adam Kenney
- title: Dror Yaron

Key Points:

How it’s used:


Templates & Downloads

Files:

Purpose: Define downloadable resources for each page (auto-populated on pages)

Structure:

page-slug:
  - title: "Resource Title"      # Required: Display name
    url: "https://url.com"       # Required: Download/external URL
    icon: icon-name              # Optional: Font Awesome icon (without 'fa-' prefix)
    description: "Description"   # Optional: Additional context

page-slug: false                 # Explicitly mark page as having no downloads

Example:

program-design:
  - title: Program Budget Calculator
    url: "https://docs.google.com/spreadsheets/d/1uXr916Y8b3QHTlnnJV3SkPr42AFlxGw6MJ776rUp5Uc/view"
    icon: google-drive

  - title: Program Timeline Checklist
    url: "https://docs.google.com/document/d/1S1r7lHC4f8w3mdonfwh6xjVmTWrbbKisKIDO4TdPMFc/view"
    icon: google-drive

fundraising: false               # No downloads for this page

application-design:
  - title: Application Template
    url: "https://docs.google.com/document/d/1VH5Fwt3ggmaEVIg8QGFGE65TrjLseGYnapv01bRdAoA/view"
    icon: google-drive

  - title: Funding Opportunity Example
    url: "https://drive.google.com/file/d/0BzCiN-PkZ98fSm9udm9sRTVXRzg/view"
    icon: file-pdf
    description: "Sample funding opportunity announcement"

Supported Icons:

Key Points:

How it’s used:

Adding new downloads:

  1. Identify the page’s slug (e.g., program-design)
  2. Edit appropriate section file (catalytic-funding.yml or community-building.yml)
  3. Add entry under the page slug key
  4. Include title, URL, and optional icon/description
  5. Rebuild Jekyll - downloads auto-appear on the page

Files:

Purpose: Define external resource links for each page

Structure: Same as templates-downloads

page-slug:
  - title: "Resource Title"
    url: "https://external-site.com"
    icon: link
    description: "Why this resource is relevant"

page-slug: false

Example:

program-design:
  - title: "Stanford Social Innovation Review: Strategic Planning"
    url: "https://ssir.org/articles/entry/strategic_planning"
    icon: link
    description: "In-depth article on strategic planning for nonprofits"

application-design:
  - title: "Grantmakers for Effective Organizations"
    url: "https://www.geofunders.org/resources"
    icon: link

How it’s used:


Checklists

Files: _data/checklists/*.yml

Purpose: Define structured task lists for embedding in pages

Naming convention: section_checklist-name.yml

Structure:

- item: "Task Name"
  description: "Detailed description of the task"

- item: "Another Task"
  description: "More details"

Example:

File: _data/checklists/catalytic-funding_application-components.yml

- item: Applicant Contact Information
  description: Name, daytime phone, email address, social media for person completing the application who should receive follow-up

- item: Organizational Information
  description: Affilation of the applicant or the applying organization (if applicable)

- item: Narrative Questions that align with Decisionmaking Criteria
  description: Questions you want your applicants to answer

- item: Budget
  description: Form or upload

- item: Timeline
  description: Form or upload

- item: References and/or Letters of Support
  description: Form or upload

- item: Terms and Conditions
  description: Fine print and/or verification person has authorization to submit on behalf of org

How it’s used:

In content pages:

<div class="row">
  <div class="col-6">
    <div class="list-group" id="checklist--items" role="tablist"></div>
  </div>
  <div class="col-6">
    <div class="tab-content" id="checklist--tabs"></div>
  </div>
</div>

Key Points:

Creating new checklists:

  1. Create file in _data/checklists/
  2. Name it: section_checklist-name.yml
  3. Add items with item and description fields
  4. Include in page with: `<div class="row">

</div> `


Community Building Experiences

File: _data/community-building-experiences.yml

Purpose: Define all content for community building experience pages

Structure:

- experience: Experience Name   # Must match frontmatter `experience` field
  goal: "I want to..."          # User goal statement
  icon: 💡                       # Emoji icon
  adjectives: "Adj1, Adj2, Adj3"# Descriptive adjectives
  tagline: "Short description"  # One-line summary
  size: "50-100 people"         # Typical event size
  process: "Step 1 > Step 2 > Step 3"  # Process description
  protips:                      # Array of pro tips
    - "**Tip 1** explanation"
    - "**Tip 2** explanation"
  example: "Real-world example" # Case study or example
  companions:                   # Related experiences (array)
    - Planning
    - Fundraising
    - Ideation

Example:

- experience: Ideation
  goal: "I want to come up with new ideas."
  icon: 💡
  adjectives: "Creative, Participatory, Generative"
  tagline: "Develop ideas for new projects and programs"
  size: "Up to 75 people"
  process: "Develop an idea > Invite interested parties > Create an agenda > Facilitate ideation session > Document ideas > Follow-up > Launch new ideas"
  protips:
    - "**Start with the problem, not the solution.** The best ideas come from deeply understanding the challenge you're trying to solve."
    - "**Create psychological safety.** Make it clear that all ideas are welcome, even wild ones."
    - "**Build on each other.** Encourage participants to riff on each other's ideas rather than critiquing them."
  example: "Sprout hosted quarterly Think & Drink sessions where community members gathered to brainstorm solutions to local challenges."
  companions:
    - Planning
    - Recruitment
    - Showcase
    - Knowledge-Sharing

Key Points:

How it’s used:

Adding new experiences:

  1. Add entry to this file with all fields
  2. Create markdown file in community-building/experiences/
  3. Set experience: frontmatter to match name here
  4. Content auto-populates from data file

Community Building Techniques

File: _data/community-building-techniques.yml

Purpose: Define all content for community building technique pages

Structure: Similar to experiences, but for facilitation techniques:

- technique: Technique Name     # Must match frontmatter `technique` field
  goal: "I want to..."          # User goal
  icon: 🎯                       # Emoji icon
  tagline: "Description"        # Summary
  description: "Full description of the technique"
  process: "Step-by-step process"
  protips:
    - "Tip 1"
    - "Tip 2"
  example: "Real-world application"
  companions:
    - Generate
    - Prioritize

Example:

- technique: Generate
  goal: "I want to generate lots of ideas."
  icon: 🌟
  tagline: "Brainstorm and ideate freely"
  description: "Generation techniques help groups produce many ideas quickly without judgment or critique."
  process: "Set clear parameters > Create safe space > Encourage wild ideas > Build on others > Defer judgment > Go for quantity"
  protips:
    - "**Quantity over quality.** At this stage, more is better."
    - "**Yes, and...** Build on ideas rather than shooting them down."
  example: "Used brainstorming to generate 100+ ideas for community events in 30 minutes."
  companions:
    - Prioritize
    - Reflect

How it’s used:


Best Practices

General YAML Guidelines

  1. Quote strings with colons:
    title: "Program Design: A Guide"  # Good
    title: Program Design: A Guide    # Bad - breaks YAML
    
  2. Use consistent indentation:
    item: Name
      description: Description        # Bad - inconsistent
    
    item: Name
    description: Description          # Good
    
  3. Quote URLs:
    url: "https://example.com"        # Good
    url: https://example.com          # Works but risky
    
  4. Comments: ```yaml

    This is a comment

    • title: Page Name # Inline comment ```

Data File Workflow

  1. Edit data file in _data/
  2. Validate YAML syntax (use online validator if unsure)
  3. Rebuild Jekyll:
    bundle exec jekyll build --config "_config.yml,_config_dev.yml"
    
  4. Verify changes in development site
  5. Commit changes to version control

Common Issues

YAML parsing errors:

Data not appearing:

Navigation not updating:


Testing Data Changes

Validate YAML Syntax

ruby -ryaml -e "puts YAML.load_file('_data/nav.yml')"

Check Data Loading

In development, add to a page temporarily:

[{&quot;title&quot;=&gt;&quot;Introduction&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Foreword&quot;}, {&quot;title&quot;=&gt;&quot;How to Use This Guide&quot;}]}, {&quot;title&quot;=&gt;&quot;Catalytic Funding&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;What Is Catalytic Funding?&quot;}, {&quot;title&quot;=&gt;&quot;Planning &amp; Preparing&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Program Design&quot;}, {&quot;title&quot;=&gt;&quot;Fundraising&quot;}]}, {&quot;title&quot;=&gt;&quot;Cultivating Applicants&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Application Design&quot;}, {&quot;title&quot;=&gt;&quot;Program Launch &amp; Announcement&quot;}, {&quot;title&quot;=&gt;&quot;Applicant Outreach &amp; Info Sessions&quot;}, {&quot;title&quot;=&gt;&quot;Prospect Management &amp; Draft Review&quot;}]}, {&quot;title&quot;=&gt;&quot;Making Decisions&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Decisionmaker Recruitment&quot;}, {&quot;title&quot;=&gt;&quot;Application Intake&quot;}, {&quot;title&quot;=&gt;&quot;Committee Review&quot;}, {&quot;title&quot;=&gt;&quot;Follow-Up &amp; Due Diligence&quot;}, {&quot;title&quot;=&gt;&quot;Meeting Facilitation&quot;}, {&quot;title&quot;=&gt;&quot;Denied Applicant Feedback&quot;}]}, {&quot;title&quot;=&gt;&quot;Managing Funded Projects&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Grant Initiation &amp; Project Planning&quot;}, {&quot;title&quot;=&gt;&quot;Reporting on Successes &amp; Challenges&quot;}, {&quot;title&quot;=&gt;&quot;Multimedia Documentation&quot;}, {&quot;title&quot;=&gt;&quot;Bringing Grantees Together&quot;}]}, {&quot;title&quot;=&gt;&quot;Sustaining &amp; Sunsetting&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Feedback &amp; Improvement&quot;}, {&quot;title&quot;=&gt;&quot;Wrap-Up &amp; Wind-Down&quot;}]}]}, {&quot;title&quot;=&gt;&quot;Community Building&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;What Is Community Building?&quot;}, {&quot;title&quot;=&gt;&quot;Campaigns&quot;}, {&quot;title&quot;=&gt;&quot;Experiences&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Planning&quot;}, {&quot;title&quot;=&gt;&quot;Fundraising&quot;}, {&quot;title&quot;=&gt;&quot;Kick-off&quot;}, {&quot;title&quot;=&gt;&quot;Recruitment&quot;}, {&quot;title&quot;=&gt;&quot;Ideation&quot;}, {&quot;title&quot;=&gt;&quot;Knowledge-Sharing&quot;}, {&quot;title&quot;=&gt;&quot;Social&quot;}, {&quot;title&quot;=&gt;&quot;Showcase&quot;}, {&quot;title&quot;=&gt;&quot;Summit&quot;}, {&quot;title&quot;=&gt;&quot;Feedback&quot;}]}, {&quot;title&quot;=&gt;&quot;Techniques&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Generate&quot;}, {&quot;title&quot;=&gt;&quot;Prioritize&quot;}, {&quot;title&quot;=&gt;&quot;Reflect&quot;}]}, {&quot;title&quot;=&gt;&quot;Voices from the Field&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Sarah Allen&quot;}, {&quot;title&quot;=&gt;&quot;Sunanna Chand&quot;}, {&quot;title&quot;=&gt;&quot;Kenny Chen&quot;}, {&quot;title&quot;=&gt;&quot;Sam Dyson&quot;}, {&quot;title&quot;=&gt;&quot;Nathan Darity&quot;}, {&quot;title&quot;=&gt;&quot;Josiah Gilliam&quot;}, {&quot;title&quot;=&gt;&quot;Cricket Fuller&quot;}, {&quot;title&quot;=&gt;&quot;Christine Marty&quot;}, {&quot;title&quot;=&gt;&quot;Adam Kenney&quot;}, {&quot;title&quot;=&gt;&quot;Dror Yaron&quot;}]}]}, {&quot;title&quot;=&gt;&quot;Lessons Learned&quot;}, {&quot;title&quot;=&gt;&quot;Resources&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Templates &amp; Downloads&quot;}, {&quot;title&quot;=&gt;&quot;Related External Links&quot;}, {&quot;title&quot;=&gt;&quot;Software Recommendations&quot;}]}, {&quot;title&quot;=&gt;&quot;About&quot;, &quot;pages&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Credits &amp; Acknowledgements&quot;}, {&quot;title&quot;=&gt;&quot;About the Authors&quot;}, {&quot;title&quot;=&gt;&quot;History of The Sprout Fund&quot;}, {&quot;title&quot;=&gt;&quot;License&quot;}]}]
{&quot;program-design&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Program Budget Calculator&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/spreadsheets/d/1uXr916Y8b3QHTlnnJV3SkPr42AFlxGw6MJ776rUp5Uc/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Program Timeline Checklist&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1S1r7lHC4f8w3mdonfwh6xjVmTWrbbKisKIDO4TdPMFc/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;fundraising&quot;=&gt;false, &quot;application-design&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Program Prospectus Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/17Z8XLan83hLqoCr--bRfJ1pj9oYtUoVy8l6rLW_xJZg/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Application Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1VH5Fwt3ggmaEVIg8QGFGE65TrjLseGYnapv01bRdAoA/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Funding Opportunity and Application Form Example&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/0BzCiN-PkZ98fSm9udm9sRTVXRzg/view&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Conference Stipend Application Example&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/0BzCiN-PkZ98fTUVTak1PSFVEZWc/view&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Budget Template for Funding Application&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/spreadsheets/d/1_-ffJNzbFcN9Ofw9v9Z5ni7VqcmNuZld1MZ8Wyu3tFE/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Timeline Template for Funding Application&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1a_06hyGLXVqJgybUXjr7G1x81FJNyPbwgp8lj4JSoJ0/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;References Template for Funding Application&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/17Z0lcz9KKsnt31GNF-CjlhhVkScgqF-5uXcDl7ERaw0/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Letter of Support Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1ASStTbRnU8tJcJcBKk1dPZXvvj8jQIo1SDkPwmqoFdc/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Petition Form Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1AIXF6Z2-keesSEMtQmxy197lI1A_3FKBUeJLSBTOO5s/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Pledge Form Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1ZMnrFapuBQm-DVjIzECACWMqBekXpupGR1yOp_230_k/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;program-launch-announcement&quot;=&gt;[{&quot;title&quot;=&gt;&quot;MBK Digital Literacy Collaborative Press Release&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1edy-fCt07jzPfU3PJc58H-WDbQeNEQ9E/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;100 Days of US Information Session Invite (program launch)&quot;, &quot;url&quot;=&gt;&quot;https://us4.campaign-archive.com/?&amp;u=d88590060b35162f56ec6156c&amp;id=518357955a&quot;, &quot;icon&quot;=&gt;&quot;envelope&quot;}, {&quot;title&quot;=&gt;&quot;Seed Award for Economic Opportunity RFP Announcement&quot;, &quot;url&quot;=&gt;&quot;https://mailchi.mp/sproutfund/request-for-proposals-seed-award-for-economic-opportunity&quot;, &quot;icon&quot;=&gt;&quot;envelope&quot;}, {&quot;title&quot;=&gt;&quot;Neighbor-to-Neighbor 2016 Relaunch Announcement&quot;, &quot;url&quot;=&gt;&quot;https://us4.campaign-archive.com/?e=[UNIQID]&amp;u=d88590060b35162f56ec6156c&amp;id=d032956c43&quot;, &quot;icon&quot;=&gt;&quot;envelope&quot;}, {&quot;title&quot;=&gt;&quot;Grand Ideas Announcement + Happy Hour Announcement&quot;, &quot;url&quot;=&gt;&quot;https://us4.campaign-archive.com/?e=[UNIQID]&amp;u=d88590060b35162f56ec6156c&amp;id=47f73fe104&quot;, &quot;icon&quot;=&gt;&quot;envelope&quot;}], &quot;applicant-outreach-info-sessions&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Sign In Sheet&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1Tg_kAnUkjaZtCmdKCoU36bTLjARbAvscdd7YC_8JfTA/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Presentation Slide Deck&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/presentation/d/105E49aThFy7SqtAjIbMeEmiXorBhXKQ55NCv4YglO-0/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Info Session Follow-up Message&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1TNppZzK3A81YSDp_jWgq4ZzM6l8t6iEVlqaIT8alcDE/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Neighbor-to-Neighbor Information Session Flyer&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=1t4DQDyum-Tn-sszQ57mTN8-MDafI2nN1&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}], &quot;prospect-management-draft-review&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Draft Feedback Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1Z9Tfvqj0ckAZrXBfUyFD8P33Ar0P4vzadNPv5oAQWTk/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Draft Feedback Email Example&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1f7hFlUchylmFKx1zhSJNk6glIM_Qf8zyEbfWahCgpCc/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;decisionmaker-recruitment&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Invitation Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1jQCCzEcAgGwEwwV21JTEY1PF9L_--MnEs8HLnr1bKcM/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Invitation Email&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1ebZdduX3eZI7vgsr-Wljzj4xx3xwlGbQ/view&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Advisory Committee Training Agenda&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1LUID2VXCqEKDSc3EF7LauHggnB6MbXa5/view&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Advisory Committee Training Manual&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1cX8Jb-KwBxfRN4EIIVYuyAaIgMKKtG-F/view&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}], &quot;application-intake&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Accepted for Review Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1fumWaiKzyTnirYSF7v6ovEikXm5a0CxqBwu-P9h9jV0/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Ineligible Application Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1DpPtQ8rqFwFwaMG4TBUDvr7aiBPYpGfnh7YmZl9AHrM/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Sample Sprout Cover Sheet (Page 1 of the Project Journal)&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=1UrPr4M21RjVOP6pWbi4eDWvE-4sDTowB&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}], &quot;committee-review&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Scorecard template - Funding Criteria&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/spreadsheets/d/1uXs0_5DGappNQd8300qHmOE3I25yOj-ZKd557_mwEJU/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Scorecard Template - Yes/No/Maybe&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/spreadsheets/d/1XNTpl_EWFp_MR7n9ItolQhrkNZ0N0fbyDM1O3z3mxfM/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Committee Packet and Scorecard Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1ARYWR1wtmYTagkOYghZpyHPbEjGSuRS-gTTLz4h_RpE/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Application Packet and Instructions for Review Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1oWM7zeRoCju2svfBiXEFrh4Peplyz83nR3WypNywdog/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;follow-up-due-diligence&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Standard Follow-Up Questions Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1Xh7BDTQEQQ2DOwzfQH321iyGzGE4bKiM4frNPTFj5X4/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Custom Follow-Up Questions Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1CMOoy0I_5LmY95L_0-klvjTfqKaXVLFl7E1bz45KpKY/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Reference Check Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1QYqBJT-9220U8Bw7hlDC3rU1DCpr23ON_J2j0TngbXU/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;meeting-facilitation&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Meeting Script template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1tN5R8jsYnYusTuW6YHRRekJsIT6QGG_wZwA9e051sQM/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Funding Round Report Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1kKfEYixs-sCpdShRN1I_Ee5YgQ23pLQV0ejCwlqiS9A/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;denied-applicant-feedback&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Denied applicant notification&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1QJ-hE8eiQawA9K4hZfmMSl6opfcCY-kxC-G3Rb3_3U8/edit?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;grant-initiation-project-planning&quot;=&gt;[{&quot;title&quot;=&gt;&quot;First Project Meeting Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1hq-bOhDfK5OwhUj1XI3g1bAVDjUJsZZc2u916eaI_QU/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;First Project Meeting Agenda Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1xAo6lnI2QOSRprYIGi3o3LBpw4AMOwNUyVT8COjhX-E/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Sample First Project Meeting Agenda&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1H-lndM2CejW8hcKU26J_5TMUEUr6wel4/view?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Project Plan Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1_3vk-PUQ9J-itisc9_OINcgEr9Z4I8P96A9yt8PrzDQ/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Invitation Letter Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1NkK4OIJiJBEsoLZsduHyNNyN9J9UhinwA-9sIjHZ3_w/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Board Approval Notification Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1fRkjoXOvhyAHYLJwWodUzlvZtnB-7OacFWKtHVJQMr4/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Sample Grant Agreement Template&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1QU3iWDAovATR4VdjW6EJdTmt6_LRIp31/view?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;file-word&quot;}], &quot;reporting-on-successes-challenges&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Progress Report Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1l9USUKiSNnqchnhsRLJvraDCZ0VgvJGVxLUTSEKJ2Nk/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Final Report Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1MGHYt0-hLvz5ot79lp6MFsn8BD5Sk1g0-T2hi0bKaoY/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Final Financial Report Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1mhxnx7BsHxHBBbT-DvK0zLUZLNQaqmIcK18cMWZnwoc/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Final Financial Report Sample&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1nQzA3a6g_wY2KxdbHgEqUAlcrYcmYtGh/view?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Sprout Standard Report Template Examples&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=1stUXaAWnWr7hBDtnBKDMaseTenqGhZ29&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Sprout Final Report Example - 100 Days&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/1G1LzQlkZffia8Y-82J66JPE5AVAkjt6f/view?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Sprout Final Report Example - Change Machine&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/file/d/16a_XAr_gGoT7qCq1_HZhQiNQDslEso0_/view?usp=sharing&quot;, &quot;icon&quot;=&gt;&quot;file-pdf&quot;}, {&quot;title&quot;=&gt;&quot;Report Reminder Notification Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1W8RzhOZ3nXhej5E5VLrflLN2pnbH-Da4uEPoxHkR67c/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Grant Amendment Email Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1d0haSY52QWH8yCd-gJaTxljcW9UCMKUhfoRbuQF0Zvo/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Grant Closed in Good Standing Notification Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1uS0t82j6ZKnu2431MecvsMY-u-km3w7rwraIA-gYkik/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Grant Termination Notification Template&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1FIOPJn039JiHJxlCSyPju6_Cq9KXsKbSgSMDNZmh26k/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}], &quot;multimedia-documentation&quot;=&gt;[{&quot;title&quot;=&gt;&quot;Editorial Meeting Agenda&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1y3muqD9llCkeH1ic7ewlQHvBHaUvZjkhIDoykXghBd0/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Messaging Framework&quot;, &quot;url&quot;=&gt;&quot;https://docs.google.com/document/d/1DFwyHjUaKBP_e8KOurxxdUvm9dvP1WS9LxgS471c9xE/view&quot;, &quot;icon&quot;=&gt;&quot;google-drive&quot;}, {&quot;title&quot;=&gt;&quot;Writing Assignment Specification&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=0B1jfYdmazlA-aFNyZXJkM1dhQlk&quot;, &quot;icon&quot;=&gt;&quot;file-word&quot;}, {&quot;title&quot;=&gt;&quot;Photo Assignment Specification&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=0B1jfYdmazlA-TWRraU1BWWI2eTg&quot;, &quot;icon&quot;=&gt;&quot;file-word&quot;}, {&quot;title&quot;=&gt;&quot;Video Assignment Specification&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=0B1jfYdmazlA-RzJLSGlQdGdCdUU&quot;, &quot;icon&quot;=&gt;&quot;file-word&quot;}, {&quot;title&quot;=&gt;&quot;Publicity Consent and Release&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=0B1jfYdmazlA-SFpkZEVkSDI2MGs&quot;, &quot;icon&quot;=&gt;&quot;file-word&quot;}, {&quot;title&quot;=&gt;&quot;Video Assignment Call Sheet&quot;, &quot;url&quot;=&gt;&quot;https://drive.google.com/open?id=0B1jfYdmazlA-TDZKdUFkd2J3MDQ&quot;, &quot;icon&quot;=&gt;&quot;file-excel&quot;}], &quot;bringing-grantees-together&quot;=&gt;false, &quot;feedback-improvement&quot;=&gt;false, &quot;funder-reporting&quot;=&gt;false, &quot;wrap-up-wind-down&quot;=&gt;false}

Verify Include Output


<!-- Check browser inspector for generated HTML -->

Additional Resources


Summary

Data files in _data/ provide:

By understanding data file structures, you can manage site-wide content without editing templates or individual pages.