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