pixelfed/resources/views/timeline/local.blade.php

28 lines
501 B
PHP
Raw Normal View History

@extends('layouts.app')
@section('content')
2019-11-24 23:13:48 +00:00
<timeline scope="local" layout="feed"></timeline>
@endsection
2019-12-05 07:15:25 +00:00
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar {
border: none !important;
}
</style>
@endpush
@push('scripts')
2019-02-11 05:49:23 +00:00
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
2019-03-26 04:22:25 +00:00
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
<script type="text/javascript">
new Vue({
el: '#content'
});
</script>
@endpush