mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update timeline views
This commit is contained in:
parent
6d204343bc
commit
8ee415d66b
3 changed files with 18 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
<timeline></timeline>
|
||||
<timeline scope="home"></timeline>
|
||||
|
||||
@endsection
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
@section('content')
|
||||
|
||||
<timeline></timeline>
|
||||
<timeline scope="local"></timeline>
|
||||
|
||||
@endsection
|
||||
|
||||
|
|
16
resources/views/timeline/network.blade.php
Normal file
16
resources/views/timeline/network.blade.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<timeline scope="network"></timeline>
|
||||
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
|
||||
<script type="text/javascript">
|
||||
new Vue({
|
||||
el: '#content'
|
||||
});
|
||||
</script>
|
||||
@endpush
|
Loading…
Reference in a new issue