abf5dcf384
The "large" version of an image is the full original file. Only logged-in users may access the large version.
11 lines
270 B
HTML
11 lines
270 B
HTML
@use rphotos::models::{Photo, Tag};
|
|
@use templates::{page_base, img_link};
|
|
|
|
@(user: Option<String>, photos: &[Photo], tag: Tag)
|
|
|
|
@:page_base(&format!("Photos tagged {}", tag.tag_name), &[], &user, {
|
|
<div class="group">
|
|
@for p in photos {@:img_link(p)}
|
|
</div>
|
|
})
|