Basic Avery 5260 Labels
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<html>
<head>
<title>Avery Labels</title>
<style>
@page { margin: 0.5in 0in 0in 0.0825in; size: US-Letter; }
body { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif; }
ul { margin: 0; padding: 0; }
ul.labels li {
margin: 0 0 0 0.13in;
padding: 0;
float: left;
width: 2.625in;
height: 1in;
display: block;
}
ul.labels li div.address {
margin-left: 0.125in;
margin-top: 0.1in;
}
</style>
</head>
<body>
<ul class="labels">
{% for person in people %}
<li>
<div class="address">
{{ person.name }}<br>
{{ person.primary_address.postal_address}}
</div>
</li>
{% endfor %}
</ul>
</body>
</html>