Browse Source

Add alternate for RSS (#7436)

pull/4/head
Yamagishi Kazutoshi 6 years ago
committed by Eugen Rochko
parent
commit
0a7e8320b2
2 changed files with 3 additions and 0 deletions
  1. +1
    -0
      app/views/accounts/show.html.haml
  2. +2
    -0
      app/views/tags/show.html.haml

+ 1
- 0
app/views/accounts/show.html.haml View File

@ -8,6 +8,7 @@
%meta{ name: 'robots', content: 'noindex' }/
%link{ rel: 'salmon', href: api_salmon_url(@account.id) }/
%link{ rel: 'alternate', type: 'application/rss+xml', href: account_url(@account, format: 'rss') }/
%link{ rel: 'alternate', type: 'application/atom+xml', href: account_url(@account, format: 'atom') }/
%link{ rel: 'alternate', type: 'application/activity+json', href: ActivityPub::TagManager.instance.uri_for(@account) }/

+ 2
- 0
app/views/tags/show.html.haml View File

@ -2,6 +2,8 @@
= "##{@tag.name}"
- content_for :header_tags do
%link{ rel: 'alternate', type: 'application/rss+xml', href: tag_url(@tag, format: 'rss') }/
%script#initial-state{ type: 'application/json' }!= json_escape(@initial_state_json)
= javascript_pack_tag 'about', integrity: true, crossorigin: 'anonymous'
= render 'og'

Loading…
Cancel
Save