You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
920 B
28 lines
920 B
extends ../layout/main
|
|
block view-content
|
|
|
|
include components/profile-picture
|
|
|
|
section.uk-section.uk-section-default.uk-section-small
|
|
.uk-container
|
|
.uk-margin
|
|
div(uk-grid).no-select
|
|
.uk-width-auto
|
|
+renderProfilePicture(user, { iconClass: 'picture-medium' })
|
|
|
|
.uk-width-expand
|
|
h1.uk-margin-remove= user.displayName || user.username || user.email
|
|
ul.uk-subnav
|
|
li
|
|
a(href=`/user/${userProfile._id}/settings`)
|
|
span
|
|
i.fas.fa-cog
|
|
span.uk-margin-small-left Settings
|
|
li
|
|
a(href=`/user/${userProfile._id}/block`)
|
|
span
|
|
i.fas.fa-ban
|
|
span.uk-margin-small-left Block List
|
|
|
|
if user.bio
|
|
.markdown-block.uk-text-truncate.uk-margin-remove!= marked.parse(user.bio)
|