Show albums and images in columns of three.
[Sone.git] / src / main / resources / templates / imageBrowser.html
index 3b36e03..a8f1e98 100644 (file)
@@ -54,7 +54,7 @@
                                </script>
                        <%/if>
 
-                       <h1><%= Page.ImageBrowser.Album.Title|l10n|replace needle='{album}' replacementKey=album.title|html></h1>
+                       <h1 class="backlink"><%= Page.ImageBrowser.Album.Title|l10n|replace needle='{album}' replacementKey=album.title|html></h1>
 
                        <div class="backlinks">
                                <%foreach album.backlinks backlink backlinks>
                                <%/foreach>
                        </div>
 
+                       <p id="description"><% album.description|html></p>
+
                        <%foreach album.albums album>
+                               <%first><h2><%= Page.ImageBrowser.Header.Albums|l10n|html></h2><%/first>
+                               <%if loop.count|mod divisor=3><div class="image-row"><%/if>
                                <div class="album image">
-                                       <a href="imageBrowser.html?album=<% album.id|html>">
+                                       <a href="imageBrowser.html?album=<% album.id|html>" title="<% album.title|html>">
                                                <%ifnull album.albumImage>
                                                        <img src="images/unknown-image-0.png" width="200" height="150" alt="<% album.title|html>" title="<% album.title|html>" />
                                                <%else><!-- TODO -->
                                                <% album.title|html>
                                        </a>
                                </div>
+                               <%= false|store key=endRow>
+                               <%if loop.count|mod divisor=3 offset=1><%= true|store key=endRow><%/if>
+                               <%last><%= true|store key=endRow><%/last>
+                               <%if endRow></div><%/if>
                        <%/foreach>
 
                        <%foreach album.images image>
+                               <%first><h2><%= Page.ImageBrowser.Header.Images|l10n|html></h2><%/first>
+                               <%if loop.count|mod divisor=3><div class="image-row"><%/if>
                                <div class="image">
                                        <a href="imageBrowser.html?image=<%image.id|html>"><% image|image-link max-width=200 max-height=150></a>
                                </div>
+                               <%= false|store key=endRow>
+                               <%if loop.count|mod divisor=3 offset=1><%= true|store key=endRow><%/if>
+                               <%last><%= true|store key=endRow><%/last>
+                               <%if endRow></div><%/if>
                        <%/foreach>
 
-                       <div id="description">
-                               <% album.description|html>
-                       </div>
-
                        <%if album.sone.local>
                                <%include include/uploadImage.html>
                                <%include include/createAlbum.html>
 
        <%elseif imageRequested>
 
-               <h1><%image.title|html></h1>
+               <h1 class="backlink"><%image.title|html></h1>
 
                <div class="backlinks">
                        <%foreach image.album.backlinks backlink backlinks>
                        <h1><%= Page.ImageBrowser.Sone.Title|l10n|replace needle='{sone}' replacementKey=sone.niceName|html></h1>
 
                        <%foreach sone.albums album>
+                               <%if loop.count|mod divisor=3><div class="image-row"><%/if>
                                <div class="album image">
-                                       <a href="imageBrowser.html?album=<% album.id|html>">
+                                       <a href="imageBrowser.html?album=<% album.id|html>" title="<% album.title|html>">
                                                <%ifnull album.albumImage>
                                                        <img src="images/unknown-image-0.png" width="200" height="150" alt="<% album.title|html>" title="<% album.title|html>" />
                                                <%else><!-- TODO -->
                                                <% album.title|html>
                                        </a>
                                </div>
+                               <%= false|store key=endRow>
+                               <%if loop.count|mod divisor=3 offset=1><%= true|store key=endRow><%/if>
+                               <%last><%= true|store key=endRow><%/last>
+                               <%if endRow></div><%/if>
                        <%/foreach>
 
                        <%if sone.local>