20 lines
533 B
Text
20 lines
533 B
Text
$newline always
|
|
<h3>Profile of #{ownerName}
|
|
|
|
$if null userAlbs
|
|
This user has no albums yet
|
|
$else
|
|
Albums of this user:
|
|
$forall (Entity albumId album) <- userAlbs
|
|
<div class="thumbnails">
|
|
<a href=@{AlbumR ownerId albumId}>
|
|
<img width="200px" src="/static/img/album.jpg"><br>
|
|
#{albumTitle album}
|
|
|
|
$if null recentMedia
|
|
This user has not uploaded any images
|
|
$else
|
|
Newest images:
|
|
$forall (Entity mediaId medium) <- take 10 recentMedia
|
|
<div class="thumbnails">
|
|
<img src=#{mediumPath medium}>
|