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 pub info in both home and profile pages

lemma (Jun 1, 2026, 6:32 PM -0500) 3e92e5fe 7bd800a8

+4
+3
app/routes/home.tsx
··· 634 634 <div className="min-w-0"> 635 635 <p className="font-display text-base font-medium text-stone-900 dark:text-white truncate leading-snug">{pub.name}</p> 636 636 <p className="text-sm text-stone-400 dark:text-stone-500 truncate mt-1">{new URL(pub.url).host}</p> 637 + {pub.description && ( 638 + <p className="text-sm text-stone-400 dark:text-stone-500 truncate mt-0.5">{pub.description}</p> 639 + )} 637 640 </div> 638 641 <div className="flex items-center gap-3 shrink-0"> 639 642 <button onClick={() => startEdit(pub)} className="text-sm text-stone-400 dark:text-stone-500 hover:text-stone-900 dark:hover:text-white transition-colors">
+1
app/routes/profile.tsx
··· 162 162 > 163 163 <div className="min-w-0"> 164 164 <p className="text-sm font-medium text-stone-900 dark:text-white truncate">{pub.name}</p> 165 + <p className="text-sm text-stone-500 dark:text-stone-400 truncate mt-0.5">{new URL(pub.url).host}</p> 165 166 {pub.description && ( 166 167 <p className="text-sm text-stone-500 dark:text-stone-400 truncate mt-0.5">{pub.description}</p> 167 168 )}