mirror of
https://github.com/pixelfed/pixelfed.git
synced 2025-02-07 04:10:46 +00:00
Merge pull request #239 from m4sk1n/fix-titles
Fix following/ers page titles
This commit is contained in:
commit
bccd01b2dc
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