album/templates/index.rs.html
Rasmus Kaj abf5dcf384 Large is full.
The "large" version of an image is the full original file.  Only
logged-in users may access the large version.
2017-02-12 15:24:39 +01:00

12 lines
260 B
HTML

@use ::Link;
@use rphotos::models::Photo;
@use templates::{page_base, img_link};
@(title: &str, lpath: &[Link], user: Option<String>, photos: &[Photo])
@:page_base(title, lpath, &user, {
<div class="group">
@for p in photos {@:img_link(p)}
</div>
})