summaryrefslogtreecommitdiff
path: root/htdocs/logos.php
blob: 514880e7f370e58db909cf64770712b1fbe77f73 (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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<?php
// Vim logos
require_once("include/init.inc");
$page_title = "logos";

include("header.php");
?>
<h1>Logos</h1>
<p>
The official logo is the word "Vim" over a green diamond.
</p>
<table id='img' align='center'>
    <tr>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim_editor.gif' alt=""></p>
	    Vim: the Editor
	</td>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim_4star.gif' alt=""></p>
	    Vim: the 4-star editor
	</td>
	<td align='center'>
	    &nbsp;
	</td>
    </tr>
    <tr>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim_small.gif' alt=""></p>
	    Vim
	</td>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim_on_fire.gif' alt=""></p>
	    the Vim logo on fire
	</td>
	<td align='center'>
	    <a href='<?=$IMAGES?>/vim.txt' >the Vim ASCII-art logo</a>
	</td>
    </tr>
</table>

<h1>Icons</h1>
<table id='icons' align='center'>
    <tr>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim32x32.gif' alt=""></p>
	    <a href='<?=$IMAGES?>/vim16x16.gif'>16px gif</a>
	    <a href='<?=$IMAGES?>/vim16x16.xpm'>16px xpm</a>
	    <br />
	    <a href='<?=$IMAGES?>/vim32x32.gif'>32px gif</a>
	    <a href='<?=$IMAGES?>/vim32x32.xpm'>32px xpm</a>
	    <br />
	    <a href='<?=$IMAGES?>/vim.ico'>MS Windows icon</a>
	</td>
	<td align='center'>
	    <p><img src='<?=$IMAGES?>/vim_document_icon.jpg' alt=""></p>
	    <a href='<?=$IMAGES?>/vim_document_icon.jpg'>jpg</a>
	    <a href='<?=$IMAGES?>/vim_document_icon.gif'>gif</a>
	    <br />
	    <a href='<?=$IMAGES?>/vim_document_icon.ico'>MS Windows icon</a>
	</td>
    </tr>
</table>
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
&nbsp;
<?php
$google_ads = "big";
include("footer.php");
?>