eidolon/templates/profile.hamlet
2014-09-05 20:40:12 +02:00

27 lines
795 B
Plaintext

$newline always
<h3>Profile of #{ownerSlug}
$if presence == True
<a href=@{ProfileSettingsR ownerId}>Change your profile settings
$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 albumId}>
$if (albumSamplePic album) == Nothing
<img width="200px" src="/static/img/album.jpg"><br>
$else
<img width="200px" src=#{T.pack $ fromJust $ albumSamplePic album}><br>
#{albumTitle album}
$if null recentMedia
This user has not uploaded any images
$else
Newest images:
$forall (Entity mediumId medium) <- take 10 recentMedia
<div class="thumbnails">
<a href=@{MediumR mediumId}>
<img src=#{mediumPath medium}>