-
Notifications
You must be signed in to change notification settings - Fork 247
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the ability to email yourself custom feed links
- Loading branch information
1 parent
639c478
commit 781b32c
Showing
11 changed files
with
110 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<tr> | ||
<td class="content-block" itemprop="handler" itemscope itemtype="http://schema.org/HttpActionHandler"> | ||
<p><%= greeting(@person) %></p> | ||
|
||
<p>Pick a link to add <em><%= @feed.name %></em> feed to your favorite podcast app!</p> | ||
|
||
<ul> | ||
<li><a href={feed_app_url(@feed, "castros://subscribe/")}>Castro</a></li> | ||
<li><a href={feed_app_url(@feed, "overcast://x-callback-url/add?url=", false)}>Overcast</a></li> | ||
<li><a href={feed_app_url(@feed, "downcast://")}>Downcast</a></li> | ||
<li><a href={feed_app_url(@feed, "pktc://subscribe/")}>Pocket Casts</a></li> | ||
<li><a href={feed_app_url(@feed, "podcastaddict://")}>Podcast Addict</a></li> | ||
<li><a href={feed_app_url(@feed, "podcast://")}>Apple Podcasts</a></li> | ||
</ul> | ||
|
||
<p>Or copy/paste <%= link("this RSS feed", to: url(~p"/feed/#{@feed.slug}")) %> into any other app.</p> | ||
|
||
<p>💚, Logbot</p> | ||
</td> | ||
</tr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<%= greeting(@person) %> | ||
|
||
Pick a link to add '<%= @feed.name %>' feed to your favorite podcast app! | ||
|
||
Castro: <%= feed_app_url(@feed, "castros://subscribe/") %> | ||
Overcast: <%= feed_app_url(@feed, "overcast://x-callback-url/add?url=", false) %> | ||
Downcast: <%= feed_app_url(@feed, "downcast://") %> | ||
Pocket Casts: <%= feed_app_url(@feed, "pktc://subscribe/") %> | ||
Apple Podcasts: <%= feed_app_url(@feed, "podcast://") %> | ||
Podcast Addict: <%= feed_app_url(@feed, "podcastaddict://") %> | ||
|
||
|
||
Direct RSS: <%= url(~p"/feed/#{@feed.slug}") %> | ||
|
||
|
||
💚, Logbot |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters