You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
696 B
HTML
24 lines
696 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<meta charset="utf-8">
|
|
<script src="paged.js/paged.polyfill.js"></script>
|
|
<link href="paged.js/pagedjs.css" rel="stylesheet" type="text/css">
|
|
<link rel="stylesheet" type="text/css" href="print.css">
|
|
</head>
|
|
<body>
|
|
{% for _, school in db.items() %}
|
|
<section class="envelope">
|
|
<section id="xpub">XPUB.NL</section>
|
|
<div>{{ school.name }}</div>
|
|
{% if school.contactperson | length > 1 %}
|
|
<div><em>for {{ school.contactperson }}</em></div>
|
|
{% endif %}
|
|
<div>{{ school.street }}</div>
|
|
<div>{{ school.postcode }} {{ school.city }} ({{ school.country }})</div>
|
|
</section>
|
|
{% endfor %}
|
|
</div>
|
|
</body>
|
|
</html> |