mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 14:47:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			543 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			543 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="{{ App::getLocale() }}" class="bg-white">
 | |
| 
 | |
| <head>
 | |
| 	<meta charset="utf-8">
 | |
| </head>
 | |
| 
 | |
| <body class="bg-white p-4">
 | |
| 	{!! $body !!}
 | |
| 
 | |
| 	@if($signature)
 | |
| 		<div style="margin-top: 20px">
 | |
| 			{!! $signature !!}
 | |
| 		</div>
 | |
| 	@endif
 | |
| </body>
 | |
| 
 | |
| <footer class="p-4">
 | |
| 	{!! $footer !!}
 | |
| </footer>
 | |
| 
 | |
| @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
 | |
| 
 | |
| </html> |