blob: e28887025afed9375f180adf70d5fd8dee5980e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<html>
<head>
<title></title>
<meta content="">
<style>
div.ads a img {
max-width: 125px;
max-height: 125px;
}
</style>
</head>
<body>
<div class="ads">
{% for ad in ads %}
<a href="{{ad.url}}"><img src="{{ MEDIA_URL }}{{ ad.name }}.png" alt="{{ ad.title|slice:":50" }}" title="{{ ad.title|slice:":50" }}" height="{{ ad.height }}" width="{{ ad.width }}" /></a><br />
{% endfor %}
</div>
</body>
</html>
|