diff options
-rw-r--r-- | bskyweb/templates/post.html | 1 | ||||
-rw-r--r-- | bskyweb/templates/profile.html | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/bskyweb/templates/post.html b/bskyweb/templates/post.html index d1fbea0ac..f6f03c7ee 100644 --- a/bskyweb/templates/post.html +++ b/bskyweb/templates/post.html @@ -38,6 +38,7 @@ <meta name="article:published_time" content="{{ postView.IndexedAt }}"> <meta name="article:published_time" content="{{ postView.IndexedAt }}"> <link rel="alternate" type="application/json+oembed" href="https://embed.bsky.app/oembed?format=json&url={{ postView.Uri | urlencode }}" /> + <link rel="alternate" href="{{ postView.Uri }}" /> {% endif -%} {%- endblock %} diff --git a/bskyweb/templates/profile.html b/bskyweb/templates/profile.html index 551dc15a6..cee8bae6a 100644 --- a/bskyweb/templates/profile.html +++ b/bskyweb/templates/profile.html @@ -37,6 +37,7 @@ {%- if requestHost %} <link rel="alternate" type="application/rss+xml" href="https://{{ requestHost }}/profile/{{ profileView.Did }}/rss"> {% endif %} + <link rel="alternate" href="at://{{ profileView.Did }}" /> {% endif -%} {%- endblock %} |