ff-admin-server/src/templates/newsletter.body.template.html

43 lines
641 B
HTML
Raw Normal View History

2024-12-28 18:03:33 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Newsletter</title>
</head>
<body>
<h1>{{{newsletterTitle}}}</h1>
<p>{{{newsletterText}}}</p>
<br />
{{#each dates}}
<div>
2025-05-21 10:56:09 +02:00
<h2><b>{{weekdayDayMonth this.starttime}}: {{this.title}}</b></h2>
2024-12-28 18:03:33 +01:00
<span>{{{this.content}}}</span>
</div>
2025-01-04 19:17:54 +01:00
<br />
2024-12-28 18:03:33 +01:00
{{/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>