Adding gallery navigation
parent
25cabd1ccc
commit
7feb2c3039
|
@ -2,11 +2,13 @@
|
|||
|
||||
final class Gallery
|
||||
{
|
||||
public string $id;
|
||||
public string $label;
|
||||
public array $images = [];
|
||||
|
||||
public function __construct(string $label)
|
||||
public function __construct(string $id, string $label)
|
||||
{
|
||||
$this->id = $id;
|
||||
$this->label = $label;
|
||||
}
|
||||
|
||||
|
|
|
@ -46,14 +46,14 @@ final class Portfolio
|
|||
if (!is_file($meta)) {
|
||||
continue;
|
||||
}
|
||||
$galleries[] = $this->loadGallery($path, trim(file_get_contents($meta)));
|
||||
$galleries[] = $this->loadGallery($path, $dir, trim(file_get_contents($meta)));
|
||||
}
|
||||
return $galleries;
|
||||
}
|
||||
|
||||
private function loadGallery(string $dir, string $title): Gallery
|
||||
private function loadGallery(string $dir, string $id, string $title): Gallery
|
||||
{
|
||||
$gallery = new Gallery($title);
|
||||
$gallery = new Gallery($id, $title);
|
||||
foreach (array_diff(scandir($dir, SCANDIR_SORT_DESCENDING), [".", ".."]) as $file) {
|
||||
$path = "$dir/$file";
|
||||
$meta = "$path.meta.txt";
|
||||
|
|
|
@ -9,10 +9,15 @@
|
|||
<header>
|
||||
<h1><a href="<?=$url?>"><?=$title?></a></h1>
|
||||
</header>
|
||||
<nav>
|
||||
<?php foreach ($galleries as $gallery): ?>
|
||||
<a href="#<?=$gallery->id?>"><?=$gallery->label?></a>
|
||||
<?php endforeach; ?>
|
||||
</nav>
|
||||
<main>
|
||||
<?php foreach ($galleries as $gallery): ?>
|
||||
<h2><?=$gallery->label?></h2>
|
||||
<ul class="gallery">
|
||||
<ul id="<?=$gallery->id?>" class="gallery">
|
||||
<?php foreach ($gallery->images as $image): ?>
|
||||
<li>
|
||||
<a class="thumbnail" href="<?=$image->full?>">
|
||||
|
|
Loading…
Reference in New Issue