-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsponsors.php
85 lines (85 loc) · 3.45 KB
/
sponsors.php
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
79
80
81
82
83
84
85
<?php
require_once('template.php');
page_header('SLUG Sponsors');
echo <<<END
<div id="content3">
SLUG is <i>not</i> a for-profit venture. While our financial needs are
meager, we still occasionally need money. Our members supply this by
purchasing raffle tickets at meetings, and making donations. In order to
have something to raffle, we depend on commercial companies who send us
raffle items.
<p>
Likewise, our website space, list server space and other things are
donated by commercial companies and generous individuals.
<p>
As a way of acknowledging the generosity of these companies and individuals,
we've set aside this page to showcase them.
<p>
As a rule of thumb, a sponsor must
donate something of value to SLUG as a whole (not individual members of SLUG),
with a spot on this page being the only thing they receive in return. If you
believe this kind of contribution is for you, and would like to become a
sponsor, email the
<a href="mailto:[email protected]"> president</a>.
<p>
Legal note: All trademarks below are the property of their respective
companies.
<p>
<hr>
<a href="http://www.apc.com">American Power Conversion<br><img src="./apc.gif"></a>
<hr>
<a href="http://www.appgen.com">Appgen<br><img src="./appgen.gif"></a>
<hr>
<a href="http://www.arkeia.com">Arkeia<br><img src="./arkeia.gif"></a>
<hr>
<a href="http://www.codeweavers.com">CodeWeavers<br><img src="./codeweavers.jpg"></a>
<hr>
<a href="http://www.g-d.com">Graphics & Design, Inc.<br><img src="./GDlogo.gif"></a>
<hr>
<a href="http://www.linuxcentral.com">Linux Central<br><img src="./linuxcentral.gif"></a>
<hr>
<a href="http://www.li.org">Linux International<br><img src="./li.gif"></a>
<hr>
<a href="http://www.linuxjournal.com">Linux Journal<br><img src="./lj_logo.gif"></a>
<hr>
<a href="http://www.linux-mandrake.com">Mandrakesoft<br><img src="./titrelogo.png"></a>
<hr>
<a href="http://www.netraverse.com">Netraverse<br><img src="./netraverse.jpg"></a>
<hr>
<a href="http://www.newsforge.com">Newsforge<br><img src="./newsforge.gif"></a>
<hr>
<a href="http://www.nks.net">Networked Knowledge Systems<br><img src="sponsored_by_nks_110x90.gif"></a>
<hr>
<a href="http://www.nostarch.com">No Starch Press<br><img src="nsp_logo.jpg"></a>
<hr>
<a href="http://www.ora.com">O'Reilly & Associates<br><img src="ora.gif"></a>
<hr>
<a href="http://www.osdn.com">Open Source Development Network<br><img src="./osdn.gif"></a>
<hr>
<a href="http://www.penguincomputing.com">Penguin Computing<br><img src="./penguincomputing.gif"></a>
<hr>
<a href="http://www.perforce.com">Perforce Software<br><img src="./perforce.gif"></a>
<hr>
<a href="http://www.quillandmouse.com">Quill & Mouse Studios, Inc.<br><img src="qmsilogo.gif"></a>
<hr>
<a href="http://www.rackspace.com/?supbid=suncoast">Rackspace<br><img src="rackspace.gif"></a>
<hr>
<a href="http://www.redhat.com">Red Hat<br><img src="redhat.gif"></a>
<hr>
<a href="http://www.linuxcertification.com">SAIR<br><img src="lc-penguin-blue2.gif"></a>
<hr>
<a href="http://www.slackware.org">Slackware<br><img src="./slackware.jpg"></a>
<hr>
<a href="http://www.novell.com/linux">SuSE Linux<br><img src="top_suse_logo.gif"></a>
<hr>
<a href="http://www.turbolinux.com">TurboLinux<br><img src="turbologo.gif"></a>
<hr>
<a href="http://www.vmware.com">VMWare<br><img src="./vmware.gif"></a>
<hr>
<a href="http://www.xandros.org">Xandros<br><img src="./xandros.jpg"></a>
<hr>
<a href="http://www.yellowdoglinux.com">Yellow Dog Linux<br><img src="./yellowdog.jpg"></a>
</div>
END;
page_footer();
?>