xref: /dokuwiki/lib/images/fileicons/svg/index.php (revision 5f18fdf30e4325978c0fb77c25bf7eff96de9394)
1<!DOCTYPE html>
2<html lang="en" dir="ltr">
3<head>
4    <title>Filetype icons</title>
5
6    <style>
7        body {
8            background-color: #fff;
9            font-family: Arial;
10        }
11    </style>
12
13</head>
14
15<body>
16<?php
17foreach (glob('*.svg') as $img) {
18    echo '<img src="'.$img.'" alt="'.$img.'" width="32" height="32" title="'.$img.'" /> ';
19}
20?>
21</body>
22</html>
23