Cachet/resources/views/layout/emails.blade.php
2015-11-24 16:27:33 -06:00

43 lines
1.6 KiB
PHP

<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="format-detection" content="address=no;=no;telephone=no" />
<title>{{ $app_name }}</title>
@include('partials.email-css')
</head>
<body leftmargin="0" marginwidth="0" topmargin="0" marginheight="0" offset="0">
<table id="body" width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="center" valign="top" class="body-cell">
<table width="544" border="0" cellpadding="0" cellspacing="0" class="box">
@if($app_banner)
<tr>
<td class="header">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="header-logo">
<a href="{{ $app_domain }}"><img src="{{ $message->embedData(base64_decode($app_banner), $app_name) }}"></a>
</td>
</tr>
</table>
</td>
</tr>
@endif
<tr>
<td class="body">
@yield('content')
</td>
</tr>
<tr>
<td class="footer">{{ $app_name }}</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>