1
0
Fork 0
pixelfed/resources/views/profile/show.blade.php

36 lines
1.3 KiB
PHP
Raw Normal View History

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>
@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
@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
@endpush