2020-02-13 12:27:42 +01:00
|
|
|
<!DOCTYPE html>
|
2020-08-02 11:59:32 +02:00
|
|
|
<html lang="{{ App::getLocale() }}" class="bg-white">
|
2020-08-18 16:34:49 +02:00
|
|
|
|
2020-02-13 12:27:42 +01:00
|
|
|
<head>
|
2020-08-18 16:34:49 +02:00
|
|
|
<meta charset="utf-8">
|
2020-02-13 12:27:42 +01:00
|
|
|
</head>
|
2020-08-18 16:34:49 +02:00
|
|
|
|
|
|
|
<body class="bg-white p-4">
|
2020-02-17 10:37:44 +01:00
|
|
|
{!! $body !!}
|
2020-09-08 06:02:00 +02:00
|
|
|
|
2020-09-28 11:09:45 +02:00
|
|
|
@if($signature)
|
|
|
|
<div style="margin-top: 20px">
|
|
|
|
{!! $signature !!}
|
|
|
|
</div>
|
|
|
|
@endif
|
2020-02-13 12:27:42 +01:00
|
|
|
</body>
|
2020-08-18 16:34:49 +02:00
|
|
|
|
|
|
|
<footer class="p-4">
|
2020-02-17 10:37:44 +01:00
|
|
|
{!! $footer !!}
|
|
|
|
</footer>
|
2020-08-18 16:34:49 +02:00
|
|
|
|
2020-09-28 11:09:45 +02:00
|
|
|
@if(!$whitelabel)
|
|
|
|
<div style="display: block; margin-top: 1rem; margin-bottom: 1rem;">
|
|
|
|
<a href="https://invoiceninja.com" target="_blank">
|
|
|
|
{{ __('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2020-02-13 12:27:42 +01:00
|
|
|
</html>
|