added more stacks

This commit is contained in:
denisdulici
2018-08-04 18:05:37 +03:00
parent d0dbf23d5a
commit 40c04128ff
24 changed files with 138 additions and 7 deletions

View File

@@ -2,6 +2,8 @@
@include('partials.admin.head')
<body class="hold-transition {{ setting('general.admin_theme', 'skin-green-light') }} sidebar-mini fixed">
@stack('body_start')
<!-- Site wrapper -->
<div class="wrapper">
@include('partials.admin.header')
@@ -12,5 +14,7 @@
@include('partials.admin.footer')
</div>
@stack('body_end')
</body>
</html>

View File

@@ -2,7 +2,11 @@
@include('partials.auth.head')
<body class="hold-transition login-page">
@stack('body_start')
<div class="login-box">
@stack('login_box_start')
<div class="login-logo">
<img src="{{ asset('public/img/akaunting-logo-white.png') }}" alt="Akaunting" />
</div>
@@ -13,7 +17,11 @@
@include('flash::message')
@stack('login_content_start')
@yield('content')
@stack('login_content_end')
</div>
<!-- /.login-box-body -->
@@ -21,6 +29,10 @@
{{ trans('footer.powered') }}: <a href="https://akaunting.com" target="_blank">{{ trans('footer.software') }}</a>
</div>
<!-- /.login-box-footer -->
@stack('login_box_end')
</div>
@stack('body_end')
</body>
</html>

View File

@@ -2,10 +2,14 @@
@include('partials.bill.head')
<body onload="window.print();">
@stack('body_start')
<!-- Content Wrapper. Contains page content -->
<div class="wrapper" style="margin-left: 0; page-break-after: always;">
@yield('content')
</div>
<!-- /.content-wrapper -->
@stack('body_end')
</body>
</html>

View File

@@ -2,6 +2,8 @@
@include('partials.customer.head')
<body class="hold-transition skin-green-light sidebar-mini fixed">
@stack('body_start')
<!-- Site wrapper -->
<div class="wrapper">
@include('partials.customer.header')
@@ -12,5 +14,7 @@
@include('partials.customer.footer')
</div>
@stack('body_end')
</body>
</html>

View File

@@ -2,10 +2,14 @@
@include('partials.invoice.head')
<body onload="window.print();">
@stack('body_start')
<!-- Content Wrapper. Contains page content -->
<div class="wrapper" style="margin-left: 0; page-break-after: always;">
@yield('content')
</div>
<!-- /.content-wrapper -->
@stack('body_end')
</body>
</html>

View File

@@ -2,6 +2,8 @@
@include('partials.modules.head')
<body class="hold-transition {{ setting('general.admin_theme', 'skin-green-light') }} sidebar-mini fixed">
@stack('body_start')
<!-- Site wrapper -->
<div class="wrapper">
@include('partials.admin.header')
@@ -12,5 +14,7 @@
@include('partials.admin.footer')
</div>
@stack('body_end')
</body>
</html>

View File

@@ -7,6 +7,10 @@
@endpush
<body onload="window.print();" class="print-width">
@stack('body_start')
@yield('content')
@stack('body_end')
</body>
</html>