mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Add new timeline templates for Timeline.vue component
This commit is contained in:
parent
d75213a751
commit
b7f4de8eaa
2 changed files with 30 additions and 0 deletions
15
resources/views/timeline/home.blade.php
Normal file
15
resources/views/timeline/home.blade.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<timeline></timeline>
|
||||
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
<script type="text/javascript">
|
||||
new Vue({
|
||||
el: '#content'
|
||||
});
|
||||
</script>
|
||||
@endpush
|
15
resources/views/timeline/local.blade.php
Normal file
15
resources/views/timeline/local.blade.php
Normal file
|
@ -0,0 +1,15 @@
|
|||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
<timeline></timeline>
|
||||
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
<script type="text/javascript">
|
||||
new Vue({
|
||||
el: '#content'
|
||||
});
|
||||
</script>
|
||||
@endpush
|
Loading…
Reference in a new issue