mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-01-30 08:20:46 +00:00
fix following/ers page titles
Signed-off-by: Marcin Mikołajczak <me@m4sk.in>
This commit is contained in:
parent
eed7ab5fee
commit
1a4748d96e
2 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
@extends('layouts.app',['title' => $user->username . "'s followers"])
|
||||
@extends('layouts.app',['title' => $profile->username . "'s followers"])
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -60,6 +60,6 @@
|
|||
@endsection
|
||||
|
||||
@push('meta')
|
||||
<meta property="og:description" content="{{$user->bio}}">
|
||||
<meta property="og:image" content="{{$user->avatarUrl()}}">
|
||||
<meta property="og:description" content="{{$profile->bio}}">
|
||||
<meta property="og:image" content="{{$profile->avatarUrl()}}">
|
||||
@endpush
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('layouts.app',['title' => $user->username . "'s follows"])
|
||||
@extends('layouts.app',['title' => $profile->username . "'s follows"])
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -60,6 +60,6 @@
|
|||
@endsection
|
||||
|
||||
@push('meta')
|
||||
<meta property="og:description" content="{{$user->bio}}">
|
||||
<meta property="og:image" content="{{$user->avatarUrl()}}">
|
||||
<meta property="og:description" content="{{$profile->bio}}">
|
||||
<meta property="og:image" content="{{$profile->avatarUrl()}}">
|
||||
@endpush
|
||||
|
|
Loading…
Reference in a new issue