xref: /dokuwiki/lib/images/fileicons/index.php (revision dfe934f96f476bdcf60d82feceb4d2a78df28ca0)
1c8839c22SAnika Henke<!DOCTYPE html>
2c8839c22SAnika Henke<html lang="en" dir="ltr">
346c43bd8Sotto<head>
4c6480b76SAndreas Gohr    <title>filetype icons</title>
5c6480b76SAndreas Gohr
6c6480b76SAndreas Gohr    <style type="text/css">
7c6480b76SAndreas Gohr        body {
8c6480b76SAndreas Gohr            background-color: #ccc;
9c6480b76SAndreas Gohr            font-family: Arial;
10c6480b76SAndreas Gohr        }
11c6480b76SAndreas Gohr
12c6480b76SAndreas Gohr        .box {
13c6480b76SAndreas Gohr            width: 200px;
14c6480b76SAndreas Gohr            float:left;
15c6480b76SAndreas Gohr            padding: 0.5em;
16c6480b76SAndreas Gohr            margin: 0;
17c6480b76SAndreas Gohr        }
18c6480b76SAndreas Gohr
19c6480b76SAndreas Gohr        .white {
20c6480b76SAndreas Gohr            background-color: #fff;
21c6480b76SAndreas Gohr        }
22c6480b76SAndreas Gohr
23c6480b76SAndreas Gohr        .black {
24c6480b76SAndreas Gohr            background-color: #000;
25c6480b76SAndreas Gohr        }
26c6480b76SAndreas Gohr    </style>
27c6480b76SAndreas Gohr
28c6480b76SAndreas Gohr</head>
29c6480b76SAndreas Gohr<body>
30c6480b76SAndreas Gohr
31c6480b76SAndreas Gohr<div class="white box">
32c6480b76SAndreas Gohr<?php
33*dfe934f9SAndreas Gohrforeach (glob('16x16/*.png') as $img) {
34c6480b76SAndreas Gohr    echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
35c6480b76SAndreas Gohr}
36c6480b76SAndreas Gohr?>
37c6480b76SAndreas Gohr</div>
38c6480b76SAndreas Gohr
39c6480b76SAndreas Gohr<div class="black box">
40c6480b76SAndreas Gohr<?php
41*dfe934f9SAndreas Gohrforeach (glob('16x16/*.png') as $img) {
42c6480b76SAndreas Gohr    echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
43c6480b76SAndreas Gohr}
44c6480b76SAndreas Gohr?>
45c6480b76SAndreas Gohr</div>
46c6480b76SAndreas Gohr
47*dfe934f9SAndreas Gohr<br style="clear: left" />
48*dfe934f9SAndreas Gohr
49*dfe934f9SAndreas Gohr<div class="white box">
50*dfe934f9SAndreas Gohr    <?php
51*dfe934f9SAndreas Gohr    foreach (glob('32x32/*.png') as $img) {
52*dfe934f9SAndreas Gohr        echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
53*dfe934f9SAndreas Gohr    }
54*dfe934f9SAndreas Gohr    ?>
55*dfe934f9SAndreas Gohr</div>
56*dfe934f9SAndreas Gohr
57*dfe934f9SAndreas Gohr<div class="black box">
58*dfe934f9SAndreas Gohr    <?php
59*dfe934f9SAndreas Gohr    foreach (glob('32x32/*.png') as $img) {
60*dfe934f9SAndreas Gohr        echo '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
61*dfe934f9SAndreas Gohr    }
62*dfe934f9SAndreas Gohr    ?>
63*dfe934f9SAndreas Gohr</div>
64*dfe934f9SAndreas Gohr
65*dfe934f9SAndreas Gohr
66c6480b76SAndreas Gohr</body>
67c6480b76SAndreas Gohr</html>
68