Skip to content

Commit

Permalink
Merge pull request #19 from PRX/indra-edits2
Browse files Browse the repository at this point in the history
More Indra Edits + Video + Other changes
  • Loading branch information
brandonhundt authored Dec 5, 2024
2 parents 1f4341b + 11b68fc commit debe8fa
Show file tree
Hide file tree
Showing 16 changed files with 63 additions and 63 deletions.
8 changes: 4 additions & 4 deletions _data/financials.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
]
},
{
"heading": "$1,815,549",
"heading": "$4,906,133",
"description": "Grants",
"type": "revenue",
"color": "yellow",
Expand All @@ -42,7 +42,7 @@
]
},
{
"heading": "$1,474,295",
"heading": "$2,446,097",
"description": "Individual Gifts",
"type": "revenue",
"color": "blue",
Expand Down Expand Up @@ -75,7 +75,7 @@
"color": "orange",
"positions": [
{
"value": "auto / 1 / span 3 / -1"
"value": "auto / 1 / span 4 / -1"
},
{
"breakpoint": "sm",
Expand All @@ -90,7 +90,7 @@
"color": "cyan",
"positions": [
{
"value": "auto / 1 / span 3 / -1"
"value": "auto / 1 / span 4 / -1"
},
{
"breakpoint": "sm",
Expand Down
20 changes: 17 additions & 3 deletions _data/picture.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

media_queries:
mobile: 'max-width: 480px'
tablet: 'max-width: 768'
tablet: 'max-width: 768px'
laptop: 'max-width: 1024px'
desktop: 'max-width: 1200'
wide: 'min-width: 1201'
desktop: 'max-width: 1200px'
wide: 'min-width: 1201px'

presets:
default:
Expand Down Expand Up @@ -88,3 +88,17 @@ presets:
webp: 100
avif: 100
jp2: 100

content-image:
formats: [webp, original]
widths: [250, 300, 360, 416]
fallback_width: 300 # The default is 800, which is probably too big.
size: calc(100vw - 8rem)
sizes:
tablet: 300px
formats: [webp, original]
dimension_attributes: true
format_quality:
webp: 100
avif: 100
jp2: 100
3 changes: 1 addition & 2 deletions _includes/app/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
<div class="footer-content">
<p>You have reached the bottom of the report. <a href="#top">Go back to the top</a></p>

<p>Photos by Sidra Alani, Jason Falchook, Alexander Lim, Christopher McIntosh, Marcus Olang&apos;, Mark Riechers, Carl Simmons, Anastasia Vlasova, PRX staff.</p>

<p>Photos by Aspen Institute Public Programs, Lucy Katcher, Mario de Lopez/TGD, Christoper McIntosh, Carl Simmons, McClaine Wellem, PRX staff.</p>

<p>&copy; Copyright 2003-2024 <a href="https://www.prx.org/">PRX</a><br />PRX is a 501(c)(3) organization recognized by the IRS: #263347402.</br><a href="https://prx.org/terms-of-service">Terms of Use</a> and <a href="http://exchange.prx.org/privacy-policy">Privacy Policy</a></p>
</div>
Expand Down
1 change: 1 addition & 0 deletions _includes/components/video.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<video src="{{ include.url }}" width="100%" controls=""></video>
2 changes: 1 addition & 1 deletion _includes/page-types/content.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h2 class="content-title">{{ content.title }}</h2>

{%- if content.featured-image -%}
<figure class="content-featured-image">
{% picture show-featured-image {{ content.featured-image.url }} --alt {{ content.featured-image.alt }} %}
{% picture content-image {{ content.featured-image.url }} --alt {{ content.featured-image.alt }} %}
</figure>
{%- endif -%}
</div>
Expand Down
8 changes: 8 additions & 0 deletions _includes/page-types/show.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ <h2 class="show-title">{{ show.title }}</h2>
</div>
{%- endif -%}

{%- if show.video -%}
<div class="show-video">
{% include components/video.html
url=show.video.url
%}
</div>
{%- endif -%}

{%- if show.mosaic -%}
{%- assign mosaic = show.mosaic -%}
<div class="show-mosaic">
Expand Down
10 changes: 5 additions & 5 deletions _sass/_content.scss
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,17 @@

blockquote.image {
display: grid;
grid-template-columns: 1fr 2fr;
grid-template-rows: repeat(2, auto);
column-gap: var(--_content--column-gap);
row-gap: 0;

picture { grid-area: 1 / 1 / 3 / 2; }
row-gap: var(--_content--row-gap);

img {
border-radius: 20px;
box-shadow: 10px -10px 0px 0px var(--_content--accent--color1), -10px 10px 0px 0px var(--_content--accent--color2);
}

@media (min-width: 768px) {
grid-template-columns: 1fr 2fr;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion _sass/_finances.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
$gap: 4rem;
$columns: 2;
$min-width: 500px;
$min-width: 600px;

/**
* Calculated values.
Expand Down
15 changes: 14 additions & 1 deletion _sass/_show.scss
Original file line number Diff line number Diff line change
Expand Up @@ -414,11 +414,24 @@

display: grid;
grid-template-columns: subgrid;
row-gap: calc(var(--_show--row-gap) / 2);
row-gap: var(--_show--row-gap);

max-width: 100vw;
}

.show-video {
grid-column: wide;

position: relative;
display: grid;
aspect-ratio: 16 / 9;

video {
border-radius: 20px;
box-shadow: 0 5px 0px 0px var(--_show--color);
}
}

.show-mosaic {
grid-column: wide;

Expand Down
4 changes: 2 additions & 2 deletions collections/_shows/ear-hustle.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
url: "https://dts.podtrac.com/redirect.mp3/pdrl.fm/c52dde/dovetail.prxu.org/_/59/d3f16a3f-5ee3-4071-8a88-f0bb18051ef6/1302_WHATS_UP_MICHAEL_FREEMAN_SEG_A_FF_-16.mp3"
title: "What&apos;s Up, Michael Freeman?"

funders: "Mellon Foundation, Meadow Fund, The Just Trust"
funders: "Mellon Foundation, Meadow Fund, Schmidt Family Foundation, The Just Trust"
quote:
text: "If you are sensitive to the sounds around you, you can make any room come alive ... When you are involved in a creative process, the direness of your environment fades a little bit. You kind of forget where you are."
citation: "&mdash; Nigel Poor, Co-Host and Co-Creator of <em>Ear Hustle</em>"
Expand All @@ -20,7 +20,7 @@
alt: "The team for Ear Hustle on a panel at the Aspen Ideas conference with John Legend"
donor-quote:
text: "Thank you for your work! <i>Ear Hustle</i> was my gateway to Radiotopia, and then I found <i>Articles of Interest</i> and <i>Everything is Alive</i> ... You folks are a beacon of light in the podcast universe. I am cheering you all on from Arkansas!"
citation: "&mdash; Elaine K., Radiotopia Listener Supporter"
citation: "&mdash; Elaine K., Radiotopia Donor"
---

<p><a href="https://www.earhustlesq.com"><em>Ear Hustle</em></a> is uniquely adept at telling expansive stories from confined spaces as the first podcast created and produced in prison. Starting from inside San Quentin State Prison in 2016, <em>Ear Hustle</em> also shares perspectives from the outside, post-incarceration. Episodes have been downloaded more than 81 million times, and incarcerated people in prisons around the world can listen to the podcast.</p>
Expand Down
2 changes: 1 addition & 1 deletion collections/_shows/normal-gossip.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
alt: "The two female hosts of Normal Gossip pose for a photo while sitting in a restaurant booth"
donor-quote:
text: "I love so many Radiotopia shows past and present &mdash; <em>Normal Gossip</em>, <em>The Memory Palace</em>, <em>Song Exploder</em>, <em>Articles of Interest</em>, <em>Everything Is Alive</em> ... I believe in the mission of a collective of independent creators with full creative freedom. It’s so special and it’s how you have such unique shows, like <em>Everything Is Alive</em> and <em>Ear Hustle</em>, which might not have been greenlit at a place like SiriusXM because the commercial value is unclear. I love what you’re doing and I hope you know how much you’re loved."
citation: "— Morgan K., Listener Supporter"
citation: "— Morgan K., Radiotopia Donor"

---
<p>When <a href=”https://defector.com/normal-gossip-podcast”><i>Normal Gossip</i></a> joined <a href=”http://radiotopia.fm”>Radiotopia</a> from PRX in 2023, the show sharing strange, funny, and utterly banal reader-submitted gossip was already a hit. Since joining the creator-owned network supported by PRX, the podcast — from the minds of Kelsey McKinney and Alex Sujong Laughlin — has exploded its reach, hitting more than 10 million downloads in the spring of 2023 and more than 20 million just a year later.</p>
Expand Down
41 changes: 3 additions & 38 deletions collections/_shows/second-sunday.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,44 +17,9 @@
donor-quote:
text: "Partnering with an entity like PRX legitimizes the work that we&apos;re doing. As an independent creator out here you need partnerships with established organizations."
citation: "— Anna DeShawn, <i>Second Sunday</i> Producer & Co-Founder/CEO of The Qube"
mosaic:
- color: blue
position: 1 / 6 / span 1 / span 1
- color: cyan
position: 6 / 8 / span 1 / span 1
- color: yellow
position: 7 / 3 / span 2 / span 2
- color: orange
position: 7 / 1 / span 1 / span 1
- color: orange
position: 4 / 4 / span 3 / span 2
- color: navy
position: 4 / 6 / span 1 / span 1
- color: yellow
position: 1 / 1 / span 5 / span 4
image:
src: img/hero/big_questions-1.jpg
alt: "TBD"
- color: yellow
position: 2 / 5 / span 2 / span 3
image:
src: img/hero/big_questions-5.jpg
alt: "TBD"
- color: navy
position: 6 / 2 / span 2 / span 2
image:
src: img/hero/big_questions-3.jpg
alt: "TBD"
- color: blue
position: 1 / 7 / span 2 / span 2
image:
src: img/hero/big_questions-2.jpg
alt: "TBD"
- color: navy
position: 5 / 5 / span 4 / span 3
image:
src: img/hero/big_questions-4.jpg
alt: "TBD"
video:
url: https://dovetail.prxu.org/9003/de91ad91-e1dd-4ad9-8602-4daf31dafc1f/PRX_COMPILATION_VIDEO.mp4

---
<p><a href="https://pod.link/1708662302"><i>Second Sunday</i></a> &mdash; a podcast from The Qube about Black queer people finding, keeping, and sometimes losing faith in the Black church &mdash; navigates religion, spirituality, culture, and identity. It&apos;s one of four shows that are part of PRX&apos;s Big Questions Project, supported by the John Templeton Foundation, helping deep thinkers bring their perspectives to podcasting. This year, <i>Second Sunday</i>, <a href="https://pod.link/1703257857"><i>Rock That Doesn&apos;t Roll</i></a>, <a href="https://pod.link/1708625744"><i>Moral Repair</i></a>, and <a href="https://pod.link/1707389845"><i>Mother is A Question</i></a> launched their second seasons with guidance from PRX Productions. The shows, which all probe central questions of what it means to be human, garnered waves of recognition in their first seasons, including from The Ambie Awards For Excellence in Audio, the Religion Communicators Council, and the American Academy of Religion.</p>

Expand Down
2 changes: 1 addition & 1 deletion collections/_shows/snap-judgment.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
alt: "The team at Snap Judgement at KQED"
donor-quote:
text: "I teach ELL in a high poverty middle school in Washington state. [<em>Snap Judgment</em>] is a godsend; authentic stories, told by different voices … My Mexican-American and Iraqi students heard themselves in a story at school for the first time … Your stories are changing how my kids look at school and themselves."
citation: "— Kathryn, <em>Snap Judgment</em> Listener Supporter"
citation: "— Kathryn, <em>Snap Judgment</em> Listener"

---
<p><a href="https://snapjudgment.org/"><em>Snap Judgment</em></a>, a quintessential show with a musical brand of storytelling, comes to the airwaves each week via PRX. Host Glynn Washington and producers draw in listeners with expert narrative and sound design. The teams behind the show shared insights into their pitch process and design in community workshops for the PRX Podcast Garage at KQED in San Francisco, giving fellow producers and fans alike a look behind the scenes and inspiration for telling their own stories.</p>
Expand Down
2 changes: 1 addition & 1 deletion collections/_shows/the-recipe.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
citation: "— Jason Saldanha, PRX Chief Operating Officer"
donor-quote:
text: "The two people that taught me how to cook &mdash; couldn&apos;t be more excited for this!"
citation: "&mdash; Jill C., <em>The Recipe</em> Listener Supporter"
citation: "&mdash; Jill C., Radiotopia Donor"
---

<p>How do you make the perfect grilled cheese? Tomato soup? Iceberg salad? For home cooks who prep meals with podcasts in their ears, <a href="https://www.therecipepodcast.com/"><em>The Recipe with Kenji and Deb</em></a> is the ideal kitchen companion. Co-hosts and co-creators Deb Perelman (<em>Smitten Kitchen</em>) and J. Kenji López-Alt (<em>The New York Times</em>, <em>The Food Lab</em>, <em>The Wok</em>) help home cooks become even better with a fun, light-hearted show from Radiotopia from PRX.</p>
Expand Down
4 changes: 2 additions & 2 deletions collections/_shows/the-world.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
quote:
text: "The closer we can get to the story, the more accurate, more powerful reporting we can do."
citation: "— Shirin Jaafari, Reporter for <em>The World</em>"
funders: "Corporation for Public Broadcasting, Carnegie Corporation of New York, Lumina Foundation, Henry Luce Foundation, United States Japan Foundation, Marty and Dorothy Silverman Foundation"
funders: "Corporation for Public Broadcasting, Carnegie Corporation of New York, Lumina Foundation, Henry Luce Foundation, United States Japan Foundation"
donor-quote:
text: "My sister Deborah Brown and I are longtime public radio donors and we are pleased to support PRX through the Harold and Colleen Brown Family Foundation. Thanks to our parents, starting as children we were exposed to world events. So The World is one of our favorite programs. When our father was Jimmy Carter&apos;s Secretary of Defense, world events could be personally stomach churning. But now they are a welcome diversion from US domestic politics. The World presents a nonpartisan view of world affairs, including reports from correspondence and interviews with world leaders. Best of all the reports cover not just the top news, there are cultural vignettes on everything from Armenian winemakers to female Zambian rappers. The hosts, Marco Werman and Carolyn Beeler, wrap it all up and make the case that Americans must recognize our connection to the rest of the world."
citation: "— Ellen Brown, Listener Supporter, Harold and Colleen Brown Family Foundation"
citation: "— Ellen Brown, <em>The World</em> and PRX Donor"
mosaic:
- color: orange
position: 1 / 1 / span 5/ span 4
Expand Down
2 changes: 1 addition & 1 deletion collections/_shows/weight-for-it.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
alt: "The team at Weight for It laughs on a panel"
quote:
text: "I really can’t overstate this enough: The training that we received was so incredibly valuable to us as a small nonprofit podcast. I am confident that when we look back on the journey of our show, we’ll point to those three days as a turning point, where we transitioned from determined enthusiasts into professionals equipped with the industry knowledge and connections we need to be really successful."
citation: "— Chance Ruder, Co-Founder of Conservation Connection and Atlanta Summit Attendee"
citation: "— Chance Ruder, Atlanta Summit Attendee"
donor-quote:
text: "I wasn&apos;t sure if I should continue because of my lack of audience engagement and following, but I now have perspective on how to actually identify my audience, gain perspective, create a better logo, create a better social presence, extend myself beyond Youtube and my platform (creating a 2nd and 3rd life for my show), and I also made friends with similar aspirations, which wasn&apos;t something I had before last Wednesday."
citation: "— Bria Edwards, Atlanta Summit Attendee"
Expand Down

0 comments on commit debe8fa

Please sign in to comment.