forked from davidgengenbach/ebay-kleinanzeigen-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html.tpl
31 lines (31 loc) · 1.03 KB
/
index.html.tpl
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css" />
<link rel="stylesheet" href="main.css" />
</head>
<body>
<table>
<tbody>
{% for ad in ads %}
<tr data-link="{{ad.link}}">
<td><img src="{{ad.img}}"/></td>
<td>{{ad.price}}</td>
<td>
<h2>{{ad.title}}</h2>
<br/>
<div>
{{ad.desc}}
</div>
</td>
<td>{{ad.added}}</td>
</tr>
{% endfor %}
</tbody>
</table>
<script src="main.js" type="text/javascript"></script>
</body>
</html>