8 lines
365 B
HTML
8 lines
365 B
HTML
@use crate::server::PhotoLink;
|
|
|
|
@(photo: &PhotoLink)
|
|
<div class="item@if photo.is_portrait() { portrait}">@if let Some(ref title) = photo.title {<h2>@title</h2>}
|
|
<a href="@photo.href"><img src="/img/@photo.id-s.jpg" width="@photo.size.0" height="@photo.size.1" alt="Photo @photo.id"></a>
|
|
@if let Some(ref d) = photo.lable {<span class="lable">@d</span>}
|
|
</div>
|