2019-03-26 19:13:30 +00:00
|
|
|
@extends('layouts.app')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="container mt-5">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-md-6 offset-md-3">
|
2019-06-19 08:45:51 +00:00
|
|
|
<p class="lead text-center font-weight-bold">The Classic Compose UI has been retired.</p>
|
|
|
|
<p class="lead text-center">
|
|
|
|
<a href="javascript:void(0)" class="btn btn-primary font-weight-bold" data-toggle="modal" data-target="#composeModal">New Post</a>
|
|
|
|
</p>
|
2019-03-26 19:13:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2019-03-27 02:09:54 +00:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@push('scripts')
|
|
|
|
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function() {
|
|
|
|
new Vue({
|
|
|
|
el: '#content'
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
@endpush
|