├── .gitignore ├── README.md └── netlify.toml /.gitignore: -------------------------------------------------------------------------------- 1 | !.keep 2 | *.DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # podcasts.thoughtbot.com 2 | 3 | This application was once used for publishing our podcasts. We now make use of 4 | [Fireside](http://fireside.fm) for the same. The `netlify.toml` file in this 5 | repository contains some redirects to current locations of podcast pages. 6 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [[redirects]] 2 | from = "/" 3 | to = "https://thoughtbot.com/podcasts" 4 | status = 301 5 | force = true 6 | 7 | [[redirects]] 8 | from = "/giantrobots.xml" 9 | to = "https://feeds.simplecast.com/KARThxOK" 10 | status = 301 11 | force = true 12 | 13 | [[redirects]] 14 | from = "/buildphase.xml" 15 | to = "https://feeds.simplecast.com/Negbvh_r" 16 | status = 301 17 | force = true 18 | 19 | [[redirects]] 20 | from = "/bikeshed.xml" 21 | to = "https://feeds.simplecast.com/ky3kewHN" 22 | status = 301 23 | force = true 24 | 25 | [[redirects]] 26 | from = "/reboot.xml" 27 | to = "https://feeds.simplecast.com/SAkbzShV" 28 | status = 301 29 | force = true 30 | 31 | [[redirects]] 32 | from = "/:show/:episode" 33 | to = "https://:show.fm/:episode" 34 | status = 301 35 | force = true 36 | 37 | [[redirects]] 38 | from = "/:show" 39 | to = "https://:show.fm/" 40 | status = 301 41 | force = true 42 | --------------------------------------------------------------------------------