diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-09 12:08:39 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-09 12:08:39 +0100 |
commit | 6c60757e99085d273cdf95d13d2b9990e4edef87 (patch) | |
tree | 5ac42b94bba4b3a29eee5bfb4e1952c354932cd3 /app/views/accounts | |
parent | c8e0ceed564263884b08f9a899f1f06c8a0c9a7f (diff) |
Improve images in opengraph meta tags
Diffstat (limited to 'app/views/accounts')
-rw-r--r-- | app/views/accounts/show.html.haml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/accounts/show.html.haml b/app/views/accounts/show.html.haml index 9390272e0..7afeb68a9 100644 --- a/app/views/accounts/show.html.haml +++ b/app/views/accounts/show.html.haml @@ -10,6 +10,8 @@ %meta{ property: 'og:title', content: "#{@account.username} on #{Rails.configuration.x.local_domain}" }/ %meta{ property: 'og:description', content: @account.note }/ %meta{ property: 'og:image', content: full_asset_url(@account.avatar.url(:original)) }/ + %meta{ property: 'og:image:width', content: '120' }/ + %meta{ property: 'og:image:height', content: '120' }/ = render partial: 'header' |