Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

feat: apply canonical filter to profile template URLs for SEO

Use canonical filter on requestURI in canonical link tag while preserving
original URL with parameters for og:url metadata. This provides clean
canonical URLs for search engines while maintaining full Open Graph URLs.

+1 -1
+1 -1
bskyweb/templates/profile.html
··· 15 15 <meta property="profile:username" content="{{ profileView.Handle }}"> 16 16 {%- if requestURI %} 17 17 <meta property="og:url" content="{{ requestURI }}"> 18 - <link rel="canonical" href="{{ requestURI }}" /> 18 + <link rel="canonical" href="{{ requestURI|canonical }}" /> 19 19 {% endif -%} 20 20 {%- if profileView.DisplayName %} 21 21 <meta property="og:title" content="{{ profileView.DisplayName }} (@{{ profileView.Handle }})">