osb/resources/views/vendor/mail/html/layout.blade.php

25 lines
948 B
PHP
Raw Normal View History

2018-08-07 04:26:33 +00:00
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2020-01-21 09:59:10 +00:00
<meta name="color-scheme" content="light only">
<meta name="supported-color-schemes" content="light only">
<link href='http://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<link href="http://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900,400italic,300italic" rel="stylesheet" type="text/css">
2018-08-07 04:26:33 +00:00
</head>
2020-01-21 09:59:10 +00:00
<body>
{{ $header ?? '' }}
2018-08-07 04:26:33 +00:00
2020-01-21 09:59:10 +00:00
<section class="content">
<div class="fixedw main-body">
{{ Illuminate\Mail\Markdown::parse($slot) }}
</div>
2018-08-07 04:26:33 +00:00
2020-01-21 09:59:10 +00:00
{{ $subcopy ?? '' }}
</section>
2018-08-07 04:26:33 +00:00
2020-01-21 09:59:10 +00:00
{{ $footer ?? '' }}
2018-08-07 04:26:33 +00:00
</body>
2020-01-21 09:59:10 +00:00
</html>