basic page rendering

This commit is contained in:
Nick Pegg 2024-08-03 18:02:02 -07:00
parent 4f5bd76f8a
commit 321cbee134
7 changed files with 117 additions and 29 deletions

View file

@ -11,7 +11,7 @@ logger = logging.getLogger(__name__)
@dataclass
class Config:
# Size of thumbnails when looking at a folder page
thumbnail_size: tuple[int, int] = (128, 128)
thumbnail_size: tuple[int, int] = (256, 256)
# Size of the image when looking at the standalone image page
view_size: tuple[int, int] = (1920, 1080)