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">
|
|
|
|
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
|
|
|
|
<meta name="description" content="Self hosted email newsletter app">
|
|
|
|
<meta name="author" content="Andris Reinman">
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
|
|
|
|
|
|
<title>Mailtrain</title>
|
|
|
|
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
<!--
|
|
|
|
<link rel="stylesheet" href="/bootstrap/css/bootstrap.min.css">
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!-- -->
|
|
|
|
<link rel="stylesheet" href="/bootstrap/themes/flatly.min.css">
|
|
|
|
<!-- -->
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/css/narrow.css">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/datepicker/css/bootstrap-datepicker3.css">
|
|
|
|
{{#if useEditor}}
|
|
|
|
<link rel="stylesheet" href="/summernote/summernote.css">
|
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<div class="header clearfix">
|
|
|
|
<h1 class="text-muted">{{title}}</h1>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{flash_messages}} {{{body}}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="/javascript/jquery-2.2.1.min.js"></script>
|
|
|
|
<script src="/bootstrap/js/bootstrap.min.js"></script>
|
|
|
|
|
|
|
|
<script src="/datepicker/js/bootstrap-datepicker.min.js"></script>
|
|
|
|
<script src="/datatables/datatables.min.js"></script>
|
|
|
|
<script src="/moment/moment.min.js"></script>
|
2016-04-29 17:31:25 +00:00
|
|
|
<script src="/moment/moment-timezone-with-data.min.js"></script>
|
2016-04-04 12:36:30 +00:00
|
|
|
<script src="/javascript/tables.js"></script>
|
|
|
|
|
|
|
|
{{#if useEditor}}
|
|
|
|
<script src="/summernote/summernote.min.js"></script>
|
|
|
|
<script src="/javascript/editor.js"></script>
|
|
|
|
{{/if}}
|
2016-05-02 16:50:43 +00:00
|
|
|
|
|
|
|
{{#if uaCode}}
|
|
|
|
<script>
|
|
|
|
(function(i, s, o, g, r, a, m) {
|
|
|
|
i['GoogleAnalyticsObject'] = r;
|
|
|
|
i[r] = i[r] || function() {
|
|
|
|
(i[r].q = i[r].q || []).push(arguments)
|
|
|
|
}, i[r].l = 1 * new Date();
|
|
|
|
a = s.createElement(o),
|
|
|
|
m = s.getElementsByTagName(o)[0];
|
|
|
|
a.async = 1;
|
|
|
|
a.src = g;
|
|
|
|
m.parentNode.insertBefore(a, m)
|
|
|
|
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
|
|
|
|
|
|
|
|
ga('create', '{{uaCode}}', 'auto');
|
|
|
|
ga('send', 'pageview');
|
|
|
|
</script>
|
|
|
|
{{/if}}
|
2016-04-04 12:36:30 +00:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|