mirror of
https://github.com/kevin-DL/complete-node-bootcamp.git
synced 2026-01-14 12:14:41 +00:00
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
//- Email template adapted from https://github.com/leemunroe/responsive-html-email-template
|
||
//- Converted from HTML using https://html2pug.now.sh/
|
||
|
||
doctype html
|
||
html
|
||
head
|
||
meta(name='viewport', content='width=device-width')
|
||
meta(http-equiv='Content-Type', content='text/html; charset=UTF-8')
|
||
title= subject
|
||
|
||
include _style
|
||
body
|
||
table.body(role='presentation', border='0', cellpadding='0', cellspacing='0')
|
||
tbody
|
||
tr
|
||
td
|
||
td.container
|
||
.content
|
||
// START CENTERED WHITE CONTAINER
|
||
table.main(role='presentation')
|
||
|
||
// START MAIN AREA
|
||
tbody
|
||
tr
|
||
td.wrapper
|
||
table(role='presentation', border='0', cellpadding='0', cellspacing='0')
|
||
tbody
|
||
tr
|
||
td
|
||
// CONTENT
|
||
block content
|
||
|
||
// START FOOTER
|
||
.footer
|
||
table(role='presentation', border='0', cellpadding='0', cellspacing='0')
|
||
tbody
|
||
tr
|
||
td.content-block
|
||
span.apple-link Natours Inc, 123 Nowhere Road, San Francisco CA 99999
|
||
br
|
||
| Don't like these emails?
|
||
a(href='#') Unsubscribe
|
||
//- td
|