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
|
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta name="viewport" content="width=device-width, initial-scale=1.0" >
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<title>Bloggings</title>
</head>
<body>
<header>
<h1>Bloggings</h1>
<a href="/static/woodworking/index.php">Back</a>
</header>
<main>
<article>
<h2><?php echo dirname($_SERVER['SCRIPT_NAME']);?></h2>
<?php
$images = glob("./*.{jpg,jpeg,gif,png,bmp,webp,webP,svg}", GLOB_BRACE);
sort ($images);
foreach ($images as $i) {
$img = basename($i);
$caption = ucfirst(substr($img, 0, strrpos($img, ".")));
printf("<figure><img src='./%s'/><figcaption>%s</figcaption></figure>", $img, $caption);
}
?>
</article>
</main>
<footer>
<p>§</p>
</footer>
</body>
</html>
|