member base template
This commit is contained in:
parent
0c44b01037
commit
d6a13d657b
2 changed files with 52 additions and 0 deletions
49
src/templates/member.body.template.html
Normal file
49
src/templates/member.body.template.html
Normal file
|
@ -0,0 +1,49 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Mitglied</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>{{member.lastname}} {{member.firstname}}{{#if member.nameaffix}} - {{member.nameaffix}}{{/if}}</h1>
|
||||
<p>Mitglieds-Ausdruck Stand {{today}}</p>
|
||||
<br />
|
||||
|
||||
<h2>Agenda</h2>
|
||||
{{#each ---}}
|
||||
<div>
|
||||
<h3></h3>
|
||||
<span></span>
|
||||
</div>
|
||||
<br />
|
||||
{{/each}}
|
||||
</body>
|
||||
<style>
|
||||
h2,
|
||||
h3,
|
||||
p,
|
||||
span,
|
||||
ul,
|
||||
li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2 {
|
||||
color: #990b00;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
table,
|
||||
th,
|
||||
td {
|
||||
border: 1px solid black;
|
||||
border-collapse: collapse;
|
||||
text-align: start;
|
||||
}
|
||||
</style>
|
||||
</html>
|
3
src/templates/member.footer.template.html
Normal file
3
src/templates/member.footer.template.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<div style="font-size: 10px; text-align: center; width: 100%; color: #888">
|
||||
Seite <span class="pageNumber"></span> von <span class="totalPages"></span>
|
||||
</div>
|
Loading…
Add table
Reference in a new issue