Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Merge pull request #8883 from internet-development/caidanw/app-1408-add-canonical-url

feat: add canonical URLs to improve SEO

authored by

jim and committed by
GitHub
99d75708 7b9bc527

+3
+1
bskyweb/templates/home.html
··· 12 12 13 13 <meta property="og:url" content="https://bsky.app" /> 14 14 <meta name="twitter:url" content="https://bsky.app" /> 15 + <link rel="canonical" href="https://bsky.app" /> 15 16 16 17 <meta property="og:image" content="https://bsky.app/static/social-card-default-gradient.png" /> 17 18 <meta property="twitter:image" content="https://bsky.app/static/social-card-default-gradient.png" />
+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 18 {% endif -%} 18 19 {%- if postView.Author.DisplayName %} 19 20 <meta property="og:title" content="{{ postView.Author.DisplayName }} (@{{ postView.Author.Handle }})">
+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 19 {% endif -%} 19 20 {%- if profileView.DisplayName %} 20 21 <meta property="og:title" content="{{ profileView.DisplayName }} (@{{ profileView.Handle }})">