See the best posts from any Bluesky account
0
fork

Configure Feed

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

Show post date on profile page; replace "view on Bluesky" link with date linking to post

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+7 -5
+7 -5
resources/views/pages/profile/show.edge
··· 166 166 @endif 167 167 @endif 168 168 169 - <div class="text-sm text-gray-400 flex gap-4 flex-wrap"> 170 - <span>♥ {{ post.likes }} likes</span> 171 - <span>♻ {{ post.reposts }} reposts</span> 172 - <a href="{{ post.bskyUrl }}" target="_blank" rel="noopener" class="text-blue-600 hover:underline">view on Bluesky ↗</a> 173 - </div> 174 169 </div> 175 170 <div class="text-xl font-bold text-gray-300 shrink-0">{{ index + 1 }}</div> 171 + </div> 172 + <div class="text-sm text-gray-400 flex justify-between flex-wrap gap-4 mt-3"> 173 + <div class="flex gap-4"> 174 + <span>♥ {{ post.likes }} likes</span> 175 + <span>♻ {{ post.reposts }} reposts</span> 176 + </div> 177 + <a href="{{ post.bskyUrl }}" target="_blank" rel="noopener" class="text-gray-400 hover:underline">{{ post.postCreatedAt.toLocaleDateString('en-US', { year: 'numeric', month: 'short', day: 'numeric' }) }}</a> 176 178 </div> 177 179 </li> 178 180 @endeach