eidolon/templates/profile.hamlet
2014-09-21 18:44:27 +02:00

34 lines
947 B
Plaintext

$newline always
<h3>Profile of #{ownerSlug}
$if presence == True
<a href=@{ProfileSettingsR ownerId}>Change your profile settings
$if null userAlbs
<ul class="noalbum">
<li>
This user has no albums yet
$else
<p>Albums of this user:
<ul>
$forall (Entity albumId album) <- userAlbs
<li>
<a href=@{AlbumR albumId}>
<figure class="thumbnail">
$if (albumSamplePic album) == Nothing
<img src="/static/img/album.jpg"><br>
$else
<img src=#{T.pack $ fromJust $ albumSamplePic album}>
<figcaption>#{albumTitle album}
$if null recentMedia
This user has not uploaded any images
$else
<p>Newest images:
<ul>
$forall (Entity mediumId medium) <- take 10 recentMedia
<li>
<a href=@{MediumR mediumId}>
<figure class="thumbnail">
<img src=#{mediumPath medium}>
<figcaption>#{mediumTitle medium}