Add Subscribe to RSS button

TODO: figure out how to integrate Atom and JSONfeed buttons without looking like absolute ass
master
Drake 1 year ago
parent c717086fa9
commit 14b055811c

@ -149,6 +149,18 @@ export default async (params: URLSearchParams) => {
<button id="favorite" class="favorite-story-button">
Favorite
</button>
{/* Crazy levels of jank */}
<form action={"/feed"}>
<input type="hidden" name="feedtype" value="rss" />
<input type="hidden" name="id" value={story.id} />
<button
type="submit"
id="feed"
class="favorite-story-button"
>
Subscribe to RSS feed
</button>
</form>
</div>
</div>
</Story>

Loading…
Cancel
Save