forked from mirror/pixelfed
13 lines
215 B
PHP
13 lines
215 B
PHP
|
@extends('layouts.app')
|
||
|
|
||
|
@section('content')
|
||
|
|
||
|
<div class="container mt-5">
|
||
|
<div class="row">
|
||
|
<div class="col-12 col-md-6 offset-md-3">
|
||
|
@include('timeline.partial.new-form')
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
@endsection
|