abf5dcf384
The "large" version of an image is the full original file. Only logged-in users may access the large version.
12 lines
269 B
HTML
12 lines
269 B
HTML
@use rphotos::models::Person;
|
|
@use templates::page_base;
|
|
|
|
@(user: Option<String>, people: &[Person])
|
|
@:page_base("Photo people", &[], &user, {
|
|
<ul class="allpeople">
|
|
@for p in people {
|
|
<li><a href="/person/@p.slug">@p.person_name</a>
|
|
}</ul>
|
|
</div>
|
|
})
|