16a1b75643
Get rid of lib.rs, and move main entry point to main.rs.
12 lines
274 B
HTML
12 lines
274 B
HTML
@use nickel::Request;
|
|
@use models::{Photo, Tag};
|
|
@use templates::{page_base, img_link};
|
|
|
|
@(req: &Request, photos: &[Photo], tag: Tag)
|
|
|
|
@:page_base(req, &format!("Photos tagged {}", tag.tag_name), &[], {
|
|
<div class="group">
|
|
@for p in photos {@:img_link(p)}
|
|
</div>
|
|
})
|