clean: rename bulk_album category

This commit is contained in:
2025-07-07 23:03:48 +02:00
parent a980dd8ead
commit 67a83708cf
7 changed files with 49 additions and 49 deletions

View File

@ -2,13 +2,13 @@
<html>
<head>
<link rel="stylesheet" href="/bulk/bulk_album.css">
<link rel="stylesheet" href="/bulk/bulk_category.css">
</head>
<body>
<h1>{{ album.name }}</h1>
<h1>{{ category.name }}</h1>
<div class="picture-container">
{% for picture in album._pictures %}
{% for picture in category._pictures %}
<a href="{{ picture.get_page().html.get_url() }}#{{ picture.id }}">
<img src="{{ picture.get_thumb().get_url() }}">
</a>