64 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
<!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" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
 | 
						|
    -->
 | 
						|
 | 
						|
    <!-- -->
 | 
						|
    <link rel="stylesheet" href="/bootstrap/themes/flatly.min.css" integrity="sha384-GtWr4mgKIG0HYWHu8/xcLo4DnouVrY7hPd7ZH6T3dobUR8XyHwF1VFWZ1yOVT8wi" crossorigin="anonymous">
 | 
						|
    <!-- -->
 | 
						|
 | 
						|
    <link rel="stylesheet" href="/css/narrow.css">
 | 
						|
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
 | 
						|
    <div class="container">
 | 
						|
 | 
						|
        <div class="header clearfix">
 | 
						|
            <h3 class="text-muted">{{campaign.subject}}</h3>
 | 
						|
        </div>
 | 
						|
 | 
						|
        {{flash_messages}} {{{body}}}
 | 
						|
 | 
						|
    </div>
 | 
						|
 | 
						|
    <script src="/javascript/jquery-2.2.1.min.js" integrity="sha384-8C+3bW/ArbXinsJduAjm9O7WNnuOcO+Bok/VScRYikawtvz4ZPrpXtGfKIewM9dK" crossorigin="anonymous"></script>
 | 
						|
    <script src="/bootstrap/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
 | 
						|
 | 
						|
 | 
						|
    {{#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}}
 | 
						|
</body>
 | 
						|
 | 
						|
</html>
 |