salix/print/templates/email/claim-pickup-order/claim-pickup-order.html

48 lines
1.8 KiB
HTML
Raw Normal View History

2019-01-25 14:08:11 +00:00
<!DOCTYPE html>
2020-05-20 14:23:53 +00:00
<html v-bind:lang="$i18n.locale">
2019-01-25 14:08:11 +00:00
<head>
<meta name="viewport" content="width=device-width">
<meta name="format-detection" content="telephone=no">
2019-01-25 14:08:11 +00:00
<title>{{ $t('subject') }}</title>
</head>
<body>
2019-11-11 10:04:49 +00:00
<table class="grid">
<tbody>
<tr>
<td>
<!-- Empty block -->
<div class="grid-row">
<div class="grid-block empty"></div>
</div>
<!-- Header block -->
<div class="grid-row">
<div class="grid-block">
<email-header v-bind="$props"></email-header>
2019-11-11 10:04:49 +00:00
</div>
</div>
<!-- Block -->
<div class="grid-row">
2021-01-18 07:33:20 +00:00
<div class="grid-block vn-pa-ml">
<h1>{{ $t('title', [id]) }}</h1>
2022-07-25 12:49:39 +00:00
<p>{{ $t('description.dear') }},</p>
<p v-html="instructions"></p>
<p>{{ $t('description.conclusion') }}</p>
2019-11-11 10:04:49 +00:00
</div>
</div>
<!-- Footer block -->
<div class="grid-row">
<div class="grid-block">
<email-footer v-bind="$props"></email-footer>
2019-11-11 10:04:49 +00:00
</div>
</div>
<!-- Empty block -->
<div class="grid-row">
<div class="grid-block empty"></div>
</div>
</td>
</tr>
</tbody>
</table>
2019-01-25 14:08:11 +00:00
</body>
2022-07-25 12:49:39 +00:00
</html>