12 lines
331 B
HTML
12 lines
331 B
HTML
@use rphotos::models::{Photo, Tag};
|
|
@use templates::page_base;
|
|
|
|
@(user: Option<String>, photos: Vec<Photo>, tag: Tag)
|
|
@:page_base(&format!("Photos tagged {}", tag.tag_name), vec![], user, {
|
|
<div class="group">
|
|
@for p in photos {
|
|
<p class="item"><a href="/details/@p.id"><img src="/img/@p.id/s"></a></p>
|
|
}
|
|
</div>
|
|
})
|