add: albums link under pictures

This commit is contained in:
2025-05-06 20:03:32 +02:00
parent b434d0837a
commit b895e5d85c
7 changed files with 47 additions and 23 deletions

View File

@ -23,6 +23,7 @@ class Picture():
self._raw: Path|None = raw
self._page: Page = page
self._albums_name: list[str] = []
self.albums: list[Album] = []
if self._albums_file.exist():
with open(self._albums_file.get_absolute_path(), "r+") as f:
albums_name: list[str] = f.read()