Skip to content

Commit

Permalink
Merge pull request #11 from PRX/feat/10-actual-content
Browse files Browse the repository at this point in the history
Adding actual content
  • Loading branch information
brandonhundt authored Nov 22, 2024
2 parents 34b0fde + 55f37f6 commit edc1aeb
Show file tree
Hide file tree
Showing 85 changed files with 3,121 additions and 401 deletions.
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Editor configuration, see https://editorconfig.org
root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
max_line_length = off
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ _site/
.jekyll-cache/
.jekyll-metadata
.DS_Store
**/.DS_Store
# Ignore folders generated by Bundler
.bundle/
vendor/
21 changes: 19 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ collections:
- welcome.html
shows:
order:
- the-recipe.html
- ear-hustle.html
- the-world.html
- test.html
- test2.html
- reveal.html
- monumental.html
- snap-judgment.html
- the-big-dig.html
- song-exploder.html
- weight-for-it.html
- marfa-for-beginners.html
- normal-gossip.html
- left-right-center.html
- second-sunday.html
content:
order:
- vision-for-content.html
- donor-list.html
- planned-giving.html
- awards-press.html
- finances.html
66 changes: 66 additions & 0 deletions _data/awards.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
[
{
"link": "https://peabodyawards.com/stories/nominees-in-docs-news-public-service-podcast-announced/",
"label": "Peabody Awards"
},
{
"link": "https://www.asme.media/american-society-of-magazine-editors-announces-national-magazine-awards-2024-nominees",
"label": "National Magazine Awards"
},
{
"link": "https://www.rtdna.org/2023-national-edward-r-murrow-award-winners",
"label": "Edward R. Murrow Awards"
},
{
"link": "https://rfkhumanrights.org/press/robert-f-kennedy-human-rights-announces-2024-book-and-journalism-award-winners/",
"label": "RFK Human Rights"
},
{
"link": "https://www.adweek.com/media/the-2024-media-hot-list-from-health-to-sports-to-business-news/",
"label": "Adweek's Hot List 2024"
},
{
"link": "https://x.com/embodiedWUNC/status/1798715943528665356",
"label": "Public Media Journalists Association"
},
{
"link": "https://coveringclimatenow.org/projects/the-2024-ccnow-journalism-awards/",
"label": "Covering Climate Now Journalism Awards"
},
{
"link": "https://liu.edu/polk/winners",
"label": "The George Polk Awards"
},
{
"link": "https://radio.newyorkfestivals.com/winners/shortlists/6e3738b3-ffa2-40a4-bebf-1b4bad20224e",
"label": "New York Festivals Radio Awards"
},
{
"link": "https://variety.com/2024/awards/news/gracie-awards-2024-michelle-obama-sydney-sweeney-selena-gomez-1235953716/",
"label": "The Alliance for Women in Media's Gracie Awards"
},
{
"link": "https://www.headlinerawards.org/2024-online/",
"label": "National Headliner Awards"
},
{
"link": "https://religioncommunicators.org/religion-communicators-council-names-wilbur-awardees/",
"label": "Wilbur Awards"
},
{
"link": "https://awards.journalists.org/entries/h2a-visa-worker-exploitation/",
"label": "Online Journalism Awards"
},
{
"link": "https://x.com/laicie/status/1793351089254781423",
"label": "International Women's Podcast Awards"
},
{
"link": "https://medium.com/prxofficial/grown-from-the-moth-and-prx-wins-2024-webby-award-for-best-lifestyle-podcast-123c566cef85",
"label": "The Webby Awards"
},
{
"link": "https://medium.com/prxofficial/weight-for-it-and-embodied-awarded-by-the-the-podcast-academy-in-the-2024-ambies-f115aa8d7933",
"label": "The Podcast Academy's Ambie Awards"
}
]
77 changes: 77 additions & 0 deletions _data/donor_levels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
[
{
"level": "champion",
"label": "Champions",
"range_min": "100,000",
"type": "individual"
},
{
"level": "transformer",
"label": "Transformers",
"range_min": "50,000",
"range_max": "99,999",
"type": "individual"
},
{
"level": "changemaker",
"label": "Changemakers",
"range_min": "25,000",
"range_max": "49,999",
"type": "individual"
},
{
"level": "ambassador",
"label": "Ambassadors",
"range_min": "10,000",
"range_max": "24,999",
"type": "individual"
},
{
"level": "leader",
"label": "Leaders",
"range_min": "5,000",
"range_max": "9,999",
"type": "individual"
},
{
"level": "creator",
"label": "Creators",
"range_min": "2,500",
"range_max": "4,999",
"type": "individual"
},
{
"level": "advocate",
"label": "Advocates",
"range_min": "1,000",
"range_max": "2,499",
"type": "individual"
},
{
"level": "institution-1mil",
"label": "Institutions",
"range_min": "1,000,000",
"type": "institution"
},
{
"level": "institution-250",
"label": "Institutions",
"range_min": "250,000",
"range_max": "999,999",
"type": "institution"
},
{
"level": "institution-100",
"label": "Institutions",
"range_min": "100,000",
"range_max": "249,999",
"type": "institution"
},
{
"level": "institution-25",
"label": "Institutions",
"range_min": "25,000",
"range_max": "99,999",
"type": "institution"
}
]
Loading

0 comments on commit edc1aeb

Please sign in to comment.