2019-02-11 19:33:23 +00:00
|
|
|
@extends('layouts.app',['title' => $profile->username . " on " . config('app.name')])
|
2018-05-30 02:38:21 +00:00
|
|
|
|
|
|
|
@section('content')
|
2018-11-09 04:38:43 +00:00
|
|
|
@if (session('error'))
|
2021-08-31 07:12:16 +00:00
|
|
|
<div class="alert alert-danger text-center font-weight-bold mb-0">
|
|
|
|
{{ session('error') }}
|
|
|
|
</div>
|
2018-11-09 04:38:43 +00:00
|
|
|
@endif
|
2018-05-30 02:38:21 +00:00
|
|
|
|
2019-05-13 06:09:30 +00:00
|
|
|
<profile profile-id="{{$profile->id}}" profile-username="{{$profile->username}}" :profile-settings="{{json_encode($settings)}}" profile-layout="{{$profile->profile_layout ?? 'metro'}}"></profile>
|
2019-04-11 20:17:18 +00:00
|
|
|
@if($profile->website)
|
|
|
|
<a class="d-none" href="{{$profile->website}}" rel="me">{{$profile->website}}</a>
|
|
|
|
@endif
|
2020-01-29 07:00:09 +00:00
|
|
|
|
|
|
|
<noscript>
|
2021-08-31 07:12:16 +00:00
|
|
|
<div class="container">
|
|
|
|
<p class="pt-5 text-center lead">Please enable javascript to view this content.</p>
|
|
|
|
</div>
|
2020-01-29 07:00:09 +00:00
|
|
|
</noscript>
|
|
|
|
|
2018-06-02 18:11:08 +00:00
|
|
|
@endsection
|
|
|
|
|
2019-02-11 19:33:23 +00:00
|
|
|
@push('meta')<meta property="og:description" content="{{$profile->bio}}">
|
2021-08-31 07:12:16 +00:00
|
|
|
@if(false == $settings['crawlable'] || $profile->remote_url)
|
|
|
|
<meta name="robots" content="noindex, nofollow">
|
|
|
|
@else <meta property="og:image" content="{{$profile->avatarUrl()}}">
|
|
|
|
<link href="{{$profile->permalink('.atom')}}" rel="alternate" title="{{$profile->username}} on Pixelfed" type="application/atom+xml">
|
|
|
|
<link href='{{$profile->permalink()}}' rel='alternate' type='application/activity+json'>
|
|
|
|
@endif
|
2018-07-25 04:33:55 +00:00
|
|
|
@endpush
|
|
|
|
|
2020-01-29 07:00:09 +00:00
|
|
|
@push('scripts')<script type="text/javascript" src="{{ mix('js/profile.js') }}"></script>
|
2021-08-31 07:12:16 +00:00
|
|
|
<script type="text/javascript" defer>App.boot();</script>
|
2019-12-05 07:24:42 +00:00
|
|
|
|
2018-06-02 18:11:08 +00:00
|
|
|
@endpush
|