Blogging platform with advanced tools for arts and sciences.
6

Configure Feed

Select the types of activity you want to include in your feed.

Show RSS button only for publications on current site (we can't know if other sites offer RSS)

lemma (Jun 7, 2026, 4:34 PM -0500) 7192c2f9 6664f0be

+9 -7
+9 -7
app/routes/profile.tsx
··· 184 184 )} 185 185 </div> 186 186 <div className="shrink-0 flex items-center gap-2"> 187 - <button 188 - onClick={() => handleCopyFeed(pub)} 189 - title="Copy Atom feed URL" 190 - className="p-1.5 rounded-md text-stone-400 dark:text-stone-500 hover:text-orange-500 dark:hover:text-orange-400 hover:bg-stone-100 dark:hover:bg-stone-800 transition-colors" 191 - > 192 - <RssIcon className="h-4 w-4" /> 193 - </button> 187 + {new URL(pub.url).origin === window.location.origin && ( 188 + <button 189 + onClick={() => handleCopyFeed(pub)} 190 + title="Copy Atom feed URL" 191 + className="p-1.5 rounded-md text-stone-400 dark:text-stone-500 hover:text-orange-500 dark:hover:text-orange-400 hover:bg-stone-100 dark:hover:bg-stone-800 transition-colors" 192 + > 193 + <RssIcon className="h-4 w-4" /> 194 + </button> 195 + )} 194 196 {showSubscribeButtons && ( 195 197 isSubscribed ? ( 196 198 <button