From 6c60757e99085d273cdf95d13d2b9990e4edef87 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 9 Dec 2016 12:08:39 +0100 Subject: Improve images in opengraph meta tags --- app/views/accounts/show.html.haml | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/views/accounts/show.html.haml') 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' -- cgit