salix/print/templates/email/delivery-note/delivery-note.html

33 lines
1021 B
HTML
Raw Normal View History

2019-09-06 09:06:44 +00:00
<!DOCTYPE html>
2019-11-04 12:55:20 +00:00
<html v-bind:lang="locale">
2019-09-06 09:06:44 +00:00
<head>
<title>{{ $t('subject') }}</title>
</head>
<body>
<section class="container">
<!-- Header component -->
2019-11-04 12:55:20 +00:00
<email-header
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</email-header>
2019-09-06 09:06:44 +00:00
<!-- End header component -->
<section class="main">
<!-- Title block -->
<div class="title">
<h1>{{ $t('title') }}</h1>
</div>
<!-- Title block end -->
<p>{{$t('dearClient')}},</p>
<p v-html="$t('clientData')"></p>
<p v-html="$t('help')"></p>
</section>
<!-- Footer component -->
2019-11-04 12:55:20 +00:00
<email-footer
v-bind:is-preview="isPreview"
v-bind:locale="locale">
</email-footer>
2019-09-06 09:06:44 +00:00
<!-- End footer component -->
</section>
</body>
</html>