1
0
Fork 0
forked from mirror/pixelfed
pixelfed/resources/views/timeline/home.blade.php

27 lines
535 B
PHP
Raw Normal View History

@extends('layouts.app')
@section('content')
2019-11-24 16:13:48 -07:00
<timeline scope="home" layout="feed"></timeline>
@endsection
2019-11-24 16:13:48 -07:00
@if($layout == 'grid')
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar.border-bottom {
border-bottom: none !important;
}
</style>
@endpush
@endif
@push('scripts')
2019-02-10 22:49:23 -07:00
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
2019-03-25 22:22:25 -06:00
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
2019-08-02 02:14:30 -06:00
<script type="text/javascript">window.App.boot()</script>
@endpush