Compare commits

...

2 Commits

Author SHA1 Message Date
09a3a32a83 Update blogroll 2024-11-11 10:20:18 -06:00
82db6b1ba2 Allow unescaped HTML markup in blogroll descriptions 2024-11-11 10:20:08 -06:00
2 changed files with 67 additions and 8 deletions

View File

@ -1,5 +1,17 @@
export default {
categories: [
{
name: "Climate Change",
blogs: [
{
title: "Grist",
feedUrl: "https://grist.org/feed/",
url: "https://grist.org/",
description:
'Grist is dedicated to highlighting climate solutions and uncovering environmental injustices. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
],
},
{
name: "Comics",
blogs: [
@ -64,7 +76,7 @@ export default {
title: "UX Daily",
feedUrl: "https://www.interaction-design.org/rss/site_news.xml",
url: "https://www.interaction-design.org",
description: "The Worlds Largest Free Online Resource on UX Design ",
description: "The Worlds Largest Free Online Resource on UX Design.",
},
],
},
@ -171,7 +183,7 @@ export default {
feedUrl: "https://apothecarysgarden.com/blogs/blog.atom",
url: "https://apothecarysgarden.com/blogs/blog",
description:
"Explore the world of natural aromatics, and the communities that bring them to us",
"Explore the world of natural aromatics, and the communities that bring them to us.",
},
{
title: "Ayala Moriel Parfums - SmellyBlog",
@ -257,14 +269,21 @@ export default {
],
},
{
name: "News",
name: "News: International",
blogs: [
{
title: "Bellingcat",
feedUrl: "https://www.bellingcat.com/feed/",
url: "https://www.bellingcat.com/",
description:
'Bellingcat is an independent investigative collective of researchers, investigators and citizen journalists brought together by a passion for open source research. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
{
title: "openDemocracy",
feedUrl: "https://www.opendemocracy.net/en/feed",
url: "https://www.opendemocracy.net/",
description:
"High-quality journalism which challenges power, inspires change and builds leadership among groups underrepresented in the media.",
"High-quality journalism which challenges power, inspires change and builds leadership among groups underrepresented in the media. (Predominantly U.K. focused)",
},
{
title: "Techdirt",
@ -275,6 +294,25 @@ export default {
},
],
},
{
name: "News: U.S.A.",
blogs: [
{
title: "Reveal from the Center for Investigative Reporting",
feedUrl: "https://revealnews.org/feed",
url: "https://revealnews.org/",
description:
'Reveal is an investigative radio show and podcast that holds the powerful accountable by reporting about everything from racial and social injustices to threats to public safety and democracy. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
{
title: "The Markup",
feedUrl: "https://themarkup.org/feeds/rss.xml",
url: "https://themarkup.org",
description:
'The Markup investigates how powerful institutions are using technology to change our society. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
],
},
{
name: "Personal Blogs",
blogs: [
@ -374,7 +412,7 @@ export default {
],
},
{
name: "Politics",
name: "Politics: U.S.A.",
blogs: [
{
title: "Kevin Drum",
@ -387,7 +425,28 @@ export default {
title: "Liberation News",
feedUrl: "https://www.liberationnews.org/feed/",
url: "https://www.liberationnews.org/",
description: "Newspaper of the Party for Socialism and Liberation",
description: "Newspaper of the Party for Socialism and Liberation.",
},
{
title: "ProPublica",
feedURL: "https://www.propublica.org/feeds/propublica/main",
url: "https://www.propublica.org/",
description:
'ProPublica is an independent, nonprofit newsroom that produces investigative journalism with moral force. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
{
title: "The 19th",
feedUrl: "https://19thnews.org/feed/",
url: "https://19thnews.org/",
description:
'An independent, nonprofit newsroom reporting on gender, politics and policy. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
{
title: "The Marshall Project",
feedUrl: "https://www.themarshallproject.org/rss/recent.rss",
url: "https://www.themarshallproject.org/",
description:
'The Marshall Project seeks to create and sustain a sense of national urgency about the U.S. criminal justice system. (Thanks to <a href="https://werd.io/2024/non-profit-newsrooms-that-speak-to-power">werd.io</a> for the recommendation.)',
},
],
},
@ -430,7 +489,7 @@ export default {
title: "Pluralistic",
feedUrl: "https://pluralistic.net/feed/",
url: "https://pluralistic.net/",
description: "Daily links from Cory Doctorow",
description: "Daily links from Cory Doctorow.",
},
{
title: "TorrentFreak",

View File

@ -20,7 +20,7 @@ layout: layouts/base.njk
</g>
</svg>
</a>
<p>{{ blog.description }}</p>
<p>{{ blog.description | safe }}</p>
</div>
{% endfor %}
</section>