42 lines
641 B
HTML
42 lines
641 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Newsletter</title>
|
|
</head>
|
|
<body>
|
|
<h1>{{{newsletterTitle}}}</h1>
|
|
<p>{{{newsletterText}}}</p>
|
|
<br />
|
|
{{#each dates}}
|
|
<div>
|
|
<h2><b>{{weekdayDayMonth this.starttime}}: {{this.title}}</b></h2>
|
|
<span>{{{this.content}}}</span>
|
|
</div>
|
|
<br />
|
|
{{/each}}
|
|
<br />
|
|
<br />
|
|
<p>{{{newsletterSignatur}}}</p>
|
|
</body>
|
|
<style>
|
|
h2,
|
|
h3,
|
|
p,
|
|
span,
|
|
ul,
|
|
li {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
h1,
|
|
h2 {
|
|
color: #990b00;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 5px;
|
|
}
|
|
</style>
|
|
</html>
|