25 lines
539 B
HTML
25 lines
539 B
HTML
@use ::CSSLINK;
|
|
@use rphotos::models::{Photo, Place};
|
|
@use templates::head;
|
|
|
|
@(user: Option<String>, photos: Vec<Photo>, place: Place)
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Photos with @place.place_name</title>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
|
@CSSLINK
|
|
</head>
|
|
<body>
|
|
@:head(vec![], user)
|
|
<h1>@place.place_name</h1>
|
|
|
|
<div class="group">
|
|
@for p in photos {
|
|
<p class="item"><a href="/details/@p.id"><img src="/img/@p.id/s"></a></p>
|
|
}
|
|
</div>
|
|
</body>
|
|
</html>
|