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
|
|
|
|
2017-03-04 16:15:16 +00:00
|
|
|
<meta name="description" content="{{#translate}}Self hosted email newsletter app{{/translate}}">
|
2018-11-03 20:46:23 +00:00
|
|
|
<link rel="shortcut icon" href="{{publicPath}}favicon.ico" type="image/x-icon" />
|
2018-09-18 08:30:13 +00:00
|
|
|
<link rel="icon" href="/static/favicon.ico">
|
2016-04-04 12:36:30 +00:00
|
|
|
|
|
|
|
<title>Mailtrain
|
|
|
|
{{#if title}} | {{title}}{{/if}}
|
|
|
|
</title>
|
|
|
|
|
2018-09-18 08:30:13 +00:00
|
|
|
<link rel="stylesheet" href="/static/bootstrap/themes/united.min.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/footer.css">
|
|
|
|
<link rel="stylesheet" href="/static/css/mailtrain.css">
|
|
|
|
<script src="/static/jquery-2.2.1.min.js"></script>
|
|
|
|
<script src="/static/bootstrap/js/bootstrap.min.js"></script>
|
2017-06-04 11:16:29 +00:00
|
|
|
|
2018-11-04 10:19:34 +00:00
|
|
|
|
2018-02-25 19:54:15 +00:00
|
|
|
{{#if mailtrainConfig}}
|
|
|
|
<script>
|
|
|
|
{{#if reactCsrfToken}}window.csfrToken = '{{reactCsrfToken}}';{{/if}}
|
|
|
|
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>
|
|
|
|
|
2017-05-09 23:40:02 +00:00
|
|
|
<body class="{{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>
|