2017-10-04 01:45:56 -04:00
|
|
|
<div .card.h-card .bg-dark>
|
2017-10-03 19:07:51 -04:00
|
|
|
$maybe route <- mcurrentRoute
|
2017-10-04 10:16:53 -04:00
|
|
|
<a .u-uid.u-url href=@{route} hidden>
|
2017-10-03 19:07:51 -04:00
|
|
|
|
2017-10-02 20:48:44 -04:00
|
|
|
$maybe avatar <- maybeAvatar
|
|
|
|
<img .card-img-top.u-photo src=#{avatar} alt="Avatar for #{userFullName user}">
|
2017-10-03 19:07:51 -04:00
|
|
|
|
2017-10-02 09:52:14 -04:00
|
|
|
<div .card-body>
|
|
|
|
<h4 .card-title.p-name>#{userFullName user}
|
2017-10-03 18:09:39 -04:00
|
|
|
$forall key <- pgpKeys
|
2017-10-04 10:16:53 -04:00
|
|
|
<a .card-subtitle.u-key href=@{routeFromPgp key}>
|
2017-10-03 18:09:39 -04:00
|
|
|
<i .fa.fa-key>
|
|
|
|
#{prettyPgp key}
|
|
|
|
<link rel="pgpkey" type="application/pgp-keys" href=@{routeFromPgp key}>
|
2017-10-02 22:17:34 -04:00
|
|
|
<p .card-text.p-note .text-muted>#{userNote user}
|
2017-10-04 01:01:07 -04:00
|
|
|
|
|
|
|
<ul .profiles>
|
|
|
|
<li>
|
|
|
|
<a .u-email rel="me" href="mailto:#{userEmail user}">
|
|
|
|
<i .fa.fa-envelope>
|
|
|
|
#{userEmail user}
|
|
|
|
$forall (site, profile) <- userProfiles
|
|
|
|
<li>
|
|
|
|
<a .u-url rel="me" href="#{siteUrl site}#{profileUsername profile}">
|
|
|
|
<i .fa.fa-#{siteIcon site}>
|
|
|
|
#{profileUsername profile}
|