2016-04-04 12:36:30 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
2016-04-04 15:59:06 +00:00
2018-11-20 22:41:10 +00:00
<meta name="description" content="Self hosted email newsletter app">
2018-11-18 20:31:22 +00:00
<link rel="shortcut icon" href=" {{ publicPath }} static/favicon.ico" type="image/x-icon" />
<link rel="icon" href=" {{ publicPath }} static/favicon.ico">
2016-04-04 12:36:30 +00:00
<title>Mailtrain
{{ # if title }} | {{ title }} {{ / if }}
</title>
2019-01-05 22:56:16 +00:00
<link rel="stylesheet" href=" {{ publicPath }} client/mailtrain.css">
2018-12-27 13:42:21 +00:00
2019-01-05 22:56:16 +00:00
<script src=" {{ publicPath }} static-npm/jquery.min.js"></script>
2018-12-27 13:42:21 +00:00
<script src=" {{ publicPath }} static-npm/popper.min.js"></script>
<script src=" {{ publicPath }} static-npm/bootstrap.min.js"></script>
<script src=" {{ publicPath }} static-npm/coreui.min.js"></script>
<script>
if (!window.location.href.startsWith(' {{ publicPath }} ')) {
console.warn('Warning: Misconfigured urlBases. If the website does not work, check the settings of www.trustedUrlBase, www.sandboxUrlBase and www.publicUrlBase in server config file.');
}
</script>
2018-11-04 10:19:34 +00:00
2018-02-25 19:54:15 +00:00
{{ # if mailtrainConfig }}
<script>
2019-01-04 20:31:01 +00:00
{{ # if reactCsrfToken }} window.csrfToken = ' {{ reactCsrfToken }} '; {{ / if }}
2018-02-25 19:54:15 +00:00
window.mailtrainConfig = {{{ mailtrainConfig }}} ;
</script>
2017-06-04 11:16:29 +00:00
2018-05-09 02:07:01 +00:00
{{ # each scriptFiles }}
2018-11-03 20:46:23 +00:00
<script src=" {{ this }} "></script>
2018-05-09 02:07:01 +00:00
{{ / each }}
2017-05-15 20:22:06 +00:00
{{ / if }}
2016-04-04 12:36:30 +00:00
</head>
2018-12-27 13:42:21 +00:00
<body class="mailtrain {{ bodyClass }} ">
2018-02-25 19:54:15 +00:00
{{{ body }}}
2017-05-15 20:22:06 +00:00
2017-03-06 13:39:43 +00:00
{{ > tracking_scripts }}
2016-04-04 12:36:30 +00:00
</body>
</html>