first commit

This commit is contained in:
2026-03-13 23:33:08 +01:00
commit 9ef71d5289
872 changed files with 57265 additions and 0 deletions

22
html/index.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
require '../vendor/autoload.php';
require './config.php';
$albums = immichRequest("$IMMICH_URL/api/albums");
foreach($albums as $key => $value) {
if($value['albumName'] == 'Camera') {
unset($albums[$key]);
}
}
$loader = new \Twig\Loader\FilesystemLoader('../templates');
$twig = new \Twig\Environment($loader);
echo $twig->render('portfolio.twig', [
'albums_data' => $albums,
'immich_url' => $IMMICH_URL,
'web_url' => $WEB_URL,
'project_title' => $PROJECT_TITLE
]);