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
|
# -*- coding: utf-8 -*-
# most of this stuff is obvious.
# tier is not currently used
# weight is whatever integer you want, i.e. bogomips, etc
ads = [
{
'name': 'OSL',
'img': 'osuosl.png',
'title': 'OSL',
'tier': 1,
'weight': 15, #bogomips
'url': 'http://osuosl.org/contribute',
'height': 50,
'width': 125,
},
{
'name': 'VR',
'img': 'sponsors/vr-ad.png',
'title': 'VR',
'weight': 15,
'tier': 1,
'url': 'http://www.vr.org/',
'width': 125,
'height': 144,
},
{
'name': 'Tek',
'img': 'tek-gentoo.gif',
'title': 'Tek Alchemy',
'tier': 1,
'weight': 25,
'url': 'http://www.tek.net/',
'height': 125,
'width': 125,
},
{
'name': 'SevenL',
'img': 'sponsors/sevenl_ad.png',
'title': 'SevenL',
'tier': 1,
'weight': 15,
'url': 'https://www.sevenl.net/?utm_source=gentoo-org&utm_medium=sponsored-banner&utm_campaign=gentoo-dedicated-servers',
'height': 125,
'width': 125,
},
{
'name': 'GNi',
'img': 'gni_logo.png',
'title': 'GNi',
'tier': 1,
'weight': 5,
'url': 'http://www.gni.com/',
'height': 44,
'width': 125,
},
{
'name': 'Bytemark',
'img': 'sponsors/bytemark_ad.png',
'title': 'Bytemark',
'tier': 1,
'weight': 15,
'url': 'http://www.bytemark.co.uk/r/gentoo-home',
'height': 125,
'width': 125,
},
{
'name': 'Edurium',
'img': 'sponsors/edurium-ad.gif',
'title': 'Edurium',
'tier': 1,
'weight': 15,
'url': 'http://www.edurium.de/',
'height': 125,
'width': 125,
},
]
|