Browse Source

Add private profile layout

Daniel Supernault 7 năm trước cách đây
mục cha
commit
e91bd452d5
1 tập tin đã thay đổi với 33 bổ sung0 xóa
  1. 33 0
      resources/views/profile/private.blade.php

+ 33 - 0
resources/views/profile/private.blade.php

@@ -0,0 +1,33 @@
+@extends('layouts.app',['title' => $user->username . " on " . config('app.name')])
+
+@section('content')
+
+@include('profile.partial.private-info')
+
+<div class="container">
+  <div class="profile-timeline mt-2 mt-md-4">
+    <div class="card">
+      <div class="card-body py-5">
+        <p class="text-center lead font-weight-bold">
+          {{__('profile.privateProfileWarning')}}
+        </p>
+
+        @if(Auth::check())
+        <p class="text-center mb-0">{{ __('profile.alreadyFollow', ['username'=>$user->username])}}</p>
+        <p class="text-center mb-0"><a href="{{route('login')}}">{{__('Log in')}}</a></p>
+        <p class="text-center mb-0">{{__('profile.loginToSeeProfile')}}</p>
+        @endif
+      </div>
+    </div>
+  </div>
+</div>
+
+@endsection
+
+@push('meta')
+<meta property="og:description" content="{{$user->bio}}">
+<meta property="og:image" content="{{$user->avatarUrl()}}">
+@if($user->remote_url)
+<meta name="robots" content="noindex, nofollow">
+@endif
+@endpush