diff --git a/resources/views/layouts/bundle.blade.php b/resources/views/layouts/bundle.blade.php
new file mode 100644
index 000000000..99775f597
--- /dev/null
+++ b/resources/views/layouts/bundle.blade.php
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+ {{ $title ?? config('app.name', 'Laravel') }}
+
+
+
+
+
+
+ @stack('meta')
+
+
+
+
+
+
+
+ @stack('styles')
+
+
+
+ @include('layouts.partial.nav')
+
+ @yield('content')
+
+ @include('layouts.partial.footer')
+ @stack('scripts')
+ @if(Auth::check())
+
+
+
+ @include('timeline.partial.new-form')
+
+
+
+ @endif
+
+