1
0
Fork 0
forked from mirror/pixelfed
pixelfed/resources/views/account/activity.blade.php

25 lines
763 B
PHP
Raw Normal View History

2018-05-26 21:25:04 -06:00
@extends('layouts.app')
@section('content')
2019-05-28 21:04:18 -06:00
<div>
2019-07-09 21:57:00 -06:00
<div class="bg-white py-4">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<div></div>
<a href="/account/activity" class="cursor-pointer font-weight-bold text-primary">Notifications</a>
2019-12-11 01:25:56 -07:00
@if(request()->user()->profile->is_private)
2019-07-09 21:57:00 -06:00
<a href="/account/follow-requests" class="cursor-pointer font-weight-bold text-dark">Follow Requests</a>
2019-12-11 01:25:56 -07:00
@endif
2019-07-09 21:57:00 -06:00
<div></div>
</div>
</div>
</div>
2019-05-28 21:04:18 -06:00
<activity-component></activity-component>
2018-05-26 21:25:04 -06:00
</div>
@endsection
2018-06-09 17:36:27 -06:00
@push('scripts')
2019-05-28 21:04:18 -06:00
<script type="text/javascript" src="{{ mix('js/activity.js') }}"></script>
2019-12-11 01:25:56 -07:00
<script type="text/javascript">window.App.boot();</script>
2018-06-09 17:36:27 -06:00
@endpush