X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FimageBrowser.html;h=72fd3406a9d7aa1f84687c921cbf7b271bfa45f3;hb=4345bd3c2e5997193d4df442db464b8775d8de66;hp=f8683945858424576ae4991f30234a07735df5a2;hpb=11f387f57dc3092a155342637c58e4c6cc9c9a37;p=Sone.git diff --git a/src/main/resources/templates/imageBrowser.html b/src/main/resources/templates/imageBrowser.html index f868394..72fd340 100644 --- a/src/main/resources/templates/imageBrowser.html +++ b/src/main/resources/templates/imageBrowser.html @@ -1,8 +1,25 @@ <%include include/head.html> - + -

<%= Page.ImageBrowser.Page.Title|l10n|html>

+ <%if albumRequested> @@ -10,13 +27,13 @@

<%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html>

- <%elseifnull album.name> + <%elseifnull album.title>

<%= Page.ImageBrowser.Album.Error.NotFound.Text|l10n|html>

<%else> -

<% album.name|html>

+

<%= Page.ImageBrowser.Album.Title|l10n|replace needle='{album}' replacementKey=album.title|html>

- <%include include/createAlbum.html> + <%foreach album.albums album> +
+ + <%ifnull album.image> + <% album.title|html> + <%else> + <% album.title|html> + <%/if> + +
+ <%/foreach> + + <%foreach album.images image> +
+ + <%ifnull image.key> + <% image.title|html> + <%else> + <% image.title|html> + <%/if> + +
+ <%/foreach> + +
+ <% album.description|html> +
+ + <%if album.sone.current> + <%include include/uploadImage.html> + <%include include/createAlbum.html> + <%/if> <%/if> <%elseif imageRequested> - <%else> + <%elseif soneRequested> + + <%ifnull sone> + +

<%= Page.ImageBrowser.Sone.Error.NotFound.Text|l10n|html>

- <%include include/createAlbum.html> + <%else> + +

<%= Page.ImageBrowser.Sone.Title|l10n|replace needle='{sone}' replacementKey=sone.niceName|html>

+ + <%foreach sone.albums album> +
+
+ + <%ifnull album.image> + <% album.title|html> + <%else> + <% album.title|html> + <%/if> + +
+
+ <%/foreach> + + <%if sone.current> + <%include include/createAlbum.html> + <%/if> + + <%/if> <%/if>