blob: fc18a5c1ac5c4a8c64bfaa92212ed79e5e5cb8b8 (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template name="ads">
<xsl:param name="images"/>
<!-- OSL -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://osuosl.org/contribute">
<img src="{concat($images,'images/osuosl.png')}" width="125" height="50" alt="Support OSL" title="Support OSL" border="0"/>
</a>
</td>
</tr>
<!-- /OSL -->
<!-- VR -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://www.vr.org">
<img src="{concat($images,'images/vr-ad.png')}" width="125" height="144" alt="Gentoo Centric Hosting: vr.org" title="Gentoo Centric Hosting: vr.org" border="0"/>
</a>
</td>
</tr>
<!-- /VR -->
<!-- Tek -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://www.tek.net" target="_top">
<img src="{concat($images,'images/tek-gentoo.gif')}" width="125" height="125" alt="Tek Alchemy" title="Tek Alchemy" border="0"/>
</a>
</td>
</tr>
<!-- /Tek -->
<!-- SevenL -->
<tr lang="en">
<td align="center" class="topsep">
<a href="https://www.sevenl.net/?utm_source=gentoo-org&utm_medium=sponsored-banner&utm_campaign=gentoo-dedicated-servers" target="_top">
<img src="{concat($images,'images/sponsors/sevenl_ad.png')}" width="125" height="144" alt="SevenL.net" title="SevenL.net" border="0"/>
</a>
</td>
</tr>
<!-- /SevenL -->
<!-- GNi -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://www.gni.com" target="_top">
<img src="{concat($images,'images/gni_logo.png')}" width="125" alt="Global Netoptex Inc." title="Global Netoptex Inc." border="0"/>
</a>
</td>
</tr>
<!-- /GNi -->
<!-- bytemark -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://www.bytemark.co.uk/r/gentoo-home" target="_top">
<img src="{concat($images,'images/sponsors/bytemark_ad.png')}" width="125" alt="Bytemark" title="Bytemark" border="0"/>
</a>
</td>
</tr>
<!-- /bytemark -->
<!-- kredit -->
<tr lang="en">
<td align="center" class="topsep">
<a href="http://www.online-kredit-index.de/" target="_top">
<img src="{concat($images,'images/sponsors/kredit-ad.jpg')}" width="125" alt="Online Kredit Index" title="Online Kredit Index" border="0"/>
</a>
</td>
</tr>
<!-- /kredit -->
</xsl:template>
</xsl:stylesheet>
|