mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +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')
|
@section('content')
|
||||||
|
|
||||||
|
@ -60,6 +60,6 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@push('meta')
|
@push('meta')
|
||||||
<meta property="og:description" content="{{$user->bio}}">
|
<meta property="og:description" content="{{$profile->bio}}">
|
||||||
<meta property="og:image" content="{{$user->avatarUrl()}}">
|
<meta property="og:image" content="{{$profile->avatarUrl()}}">
|
||||||
@endpush
|
@endpush
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@extends('layouts.app',['title' => $user->username . "'s follows"])
|
@extends('layouts.app',['title' => $profile->username . "'s follows"])
|
||||||
|
|
||||||
@section('content')
|
@section('content')
|
||||||
|
|
||||||
|
@ -60,6 +60,6 @@
|
||||||
@endsection
|
@endsection
|
||||||
|
|
||||||
@push('meta')
|
@push('meta')
|
||||||
<meta property="og:description" content="{{$user->bio}}">
|
<meta property="og:description" content="{{$profile->bio}}">
|
||||||
<meta property="og:image" content="{{$user->avatarUrl()}}">
|
<meta property="og:image" content="{{$profile->avatarUrl()}}">
|
||||||
@endpush
|
@endpush
|
||||||
|
|
Loading…
Reference in a new issue