album/templates/groups.rs.html
2016-09-23 16:40:54 +02:00

32 lines
643 B
HTML

@use ::{CSSLINK, Group, Link};
@use templates::head;
@(title: &str, lpath: Vec<Link>, user: Option<String>, groups: Vec<Group>)
<!doctype html>
<html>
<head>
<title>@title</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
@CSSLINK
</head>
<body>
@:head(lpath, user)
<h1>@title</h1>
<div class="group">
@for g in groups {
<div class="item"><h2>@g.title</h2>
<p><a href="@g.url"><img src="/img/@g.photo.id/s"></a></p>
<p>@g.count pictures</p>
</div>
}
@*
{{^groups}}
<p>Inga bilder.</p>
{{/groups}}
*@
</div>
</body>
</html>