28 lines
686 B
PHP
Executable File
28 lines
686 B
PHP
Executable File
<?php
|
|
$path = "./media/pukeko";
|
|
|
|
$images = glob($path . "/*.{jpeg,jpg,png,gif,webp}", GLOB_BRACE);
|
|
?>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="styles/style.css" type="text/css">
|
|
</head>
|
|
<body>
|
|
<div class="container" style="width: 800px">
|
|
<?php include "./modules/navbar.htm"; ?>
|
|
<div class="in-container">
|
|
<?php
|
|
for ($i = 0; $i < count($images); $i++) {
|
|
echo '<div style="padding: 8px; display: inline-block">
|
|
<a href="'.$images[$i].'"><img src="'.$images[$i].'" height="200px" class="pukeko-image" /></a>
|
|
</div>';
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|