2019-08-17 01:14:41 -04:00
|
|
|
- content_for :page_title do
|
2020-05-26 20:12:19 -04:00
|
|
|
= "#{display_name(account)} (@#{account.username}) • #{site_hostname}"
|
2019-08-17 01:14:41 -04:00
|
|
|
|
|
|
|
- content_for :header_tags do
|
|
|
|
- if account.user&.setting_noindex
|
|
|
|
%meta{ name: 'robots', content: 'noindex' }/
|
|
|
|
|
2020-05-26 20:12:19 -04:00
|
|
|
= opengraph 'og:type', 'profile'
|
2020-11-15 12:48:32 -06:00
|
|
|
= render 'accounts/og', account: account, url: "https://gab.com/#{account.username}"
|
2020-05-26 20:12:19 -04:00
|
|
|
|
2019-08-17 01:14:41 -04:00
|
|
|
- if older_url
|
|
|
|
%link{ rel: 'next', href: older_url }/
|
|
|
|
- if newer_url
|
|
|
|
%link{ rel: 'prev', href: newer_url }/
|