summaryrefslogtreecommitdiff
path: root/htdocs/thanks.php
blob: 76eb2ac3f2bf4c7f1844ee3d1742ede438be806d (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
<?php
// thanks page
require_once("include/init.inc");
$page_title = "thanks";

include("header.php");
?>
<h1>Thanks To</h1>
<ul>
	<li><a href="http://www.moolenaar.net/">Bram Moolenaar</a> - for his work on Vim</li>
	<li>the Vim community - for their work on Vim</li>
	<li>
		the <a href="http://www.php.net">php</a> community - for their work on php 
		(and their great reference docs)
	</li>
	<li>the <a href="http://www.mysql.com">mysql</a> community - for their free database</li>
	<li><a href="http://www.sourceforge.net">sourceforge</a> - for their project hosting</li>
	<li>
		Colin Viebrock - for his <a href='http://www.php.net/'>php.net</a> site
		design which inspired a lot of Vim online's design
	</li>
	<li>Sven Guckes - for creating the first Vim web site</li>
	<li>Ricardo Signes - for setting up the new Vim web site</li>
	<li>Scott Johnston and Jonathan Morace - for setting up vim-online</li>
</ul>
<?php
$google_ads = "big";
include("footer.php");
?>