1
0
Fork 1
mirror of https://github.com/pixelfed/pixelfed.git synced 2025-03-06 19:48:22 +00:00
pixelfed/resources/views/profile/show.blade.php

31 lines
1 KiB
PHP
Raw Normal View History

2019-02-11 12:33:23 -07:00
@extends('layouts.app',['title' => $profile->username . " on " . config('app.name')])
2018-05-29 20:38:21 -06:00
@section('content')
2018-11-08 21:38:43 -07:00
@if (session('error'))
<div class="alert alert-danger text-center font-weight-bold mb-0">
{{ session('error') }}
</div>
@endif
2018-05-29 20:38:21 -06:00
2019-03-07 13:51:20 -07:00
<profile profile-id="{{$profile->id}}" :profile-settings="{{json_encode($settings)}}"></profile>
2018-05-29 20:38:21 -06:00
@endsection
2019-02-11 12:33:23 -07:00
@push('meta')<meta property="og:description" content="{{$profile->bio}}">
<meta property="og:image" content="{{$profile->avatarUrl()}}">
<link href="{{$profile->permalink('.atom')}}" rel="alternate" title="{{$profile->username}} on PixelFed" type="application/atom+xml">
2019-03-07 13:51:20 -07:00
@if(false == $settings['crawlable'] || $profile->remote_url)
<meta name="robots" content="noindex, nofollow">
@endif
@endpush
@push('scripts')
2019-02-11 12:33:23 -07:00
<script type="text/javascript" src="{{ mix('js/profile.js') }}"></script>
2019-03-25 22:22:25 -06:00
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
<script type="text/javascript">
2019-02-11 12:33:23 -07:00
new Vue({
el: '#content'
});
</script>
@endpush