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 clean URLs in post template

Uses canonical filter for canonical link tags while preserving original URLs with parameters for og:url metadata, improving SEO through proper URL canonicalization

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