Skip to content

Commit afb16f4

Browse files
committed
Add rss feedpage.
1 parent 5938809 commit afb16f4

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

docusaurus.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ const config: Config = {
117117
{to: '/docs/guests', label: 'Request Appearance', position: 'left'},
118118
{to: '/docs/guests', label: 'Guests', position: 'left'},
119119
{to: '/docs/sponsorship', label: 'Sponsor the Podcast', position: 'left'},
120-
{ label: 'RSS', href: 'https://adventuresindevops.com/episodes/rss.xml', position: 'right' }
120+
{ label: 'RSS', href: 'https://adventuresindevops.com/rss', position: 'right' }
121121
],
122122
},
123123
footer: {
@@ -153,7 +153,7 @@ const config: Config = {
153153
},
154154
{
155155
label: 'RSS Feed',
156-
href: 'https://adventuresindevops.com/episodes/rss.xml',
156+
href: 'https://adventuresindevops.com/rss',
157157
}
158158
],
159159
},

src/components/socialButtons/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export default function SocialButtons(props) {
3333
</div>
3434
</a>
3535

36-
<a href="https://adventuresindevops.com/episodes/rss.xml" target="_blank" className={clsx('text-dark', styles.networkingLink)}>
36+
<a href="https://adventuresindevops.com/rss" target="_blank" className={clsx('text-dark', styles.networkingLink)}>
3737
<div>
3838
<FontAwesomeIcon icon={faRssSquare} style={{ color: 'orange' }} size="3x" title="Follow for new episodes on our RSS Feed" />
3939
</div>

src/pages/rss.mdx

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: Adventures in DevOps RSS Feed
3+
id: join
4+
# https://docusaurus.io/docs/markdown-features/head-metadata#customizing-head-metadata
5+
---
6+
7+
<head>
8+
<meta charSet="UTF-8" />
9+
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1" />
10+
<meta httpEquiv="X-UA-Compatible" content="ie=edge" />
11+
<meta name="theme-color" content="#2d434d" />
12+
<title>Adventures in DevOps RSS Feed</title>
13+
<!-- An auto redirect to Spreaker feed, although it should actually be correctly generated https://adventuresindevops.com/episodes/rss.xml instead, but right now that one isn't suitable for podcasts -->
14+
<meta http-equiv="refresh" content="0; URL='https://www.spreaker.com/show/6102036/episodes/feed'" />
15+
</head>
16+
17+
import Spinner from '@site/src/components/spinner';
18+
19+
<Spinner />

0 commit comments

Comments
 (0)