-
Notifications
You must be signed in to change notification settings - Fork 660
/
sitemapTemplate.html.template
65 lines (62 loc) · 2.16 KB
/
sitemapTemplate.html.template
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>
Site Map
</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-type" />
<link href="sitemap.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="cont">
<h1>
FOSSASIA Sitemap
</h1>
<h3>
<a href="http://fossasia.org">
Homepage
</a> Last updated: 2016, September 23
</h3>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr valign="top">
<td class="lpart" colspan="100">
<div class="lhead">
Homepage/
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td class="lpage">
<a href="http://fossasia.org/" title="FOSSASIA | Asia's Open Technology Organization for Open Source Software, Hardware, Open Design, Open Data, Open Knowledge">
FOSSASIA | Asia's Open Technology Organization for Open Source Software, Hardware, Open Design, Open Data, Open Knowledge
</a>
</td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
{% for site in sites %}
<div class="lhead">
{{site.name}}
<span class="lcount">
1 pages
</span>
</div>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tbody>
<tr>
<td class="lpage">
<a href={{site.url}} title={{site.title}}>
{{site.title}}
</a>
</td>
</tr>
</tbody>
</table>
{% endfor %}
</body>
</html>