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.
27 lines
1.2 KiB
27 lines
1.2 KiB
extends ../layouts/main
|
|
block content
|
|
|
|
include ../comment/components/comment
|
|
|
|
section.uk-section.uk-section-default
|
|
.uk-container
|
|
div(uk-grid)
|
|
.uk-width-auto
|
|
+renderProfileIcon(userProfile, userProfile.displayName || userProfile.username, 'large')
|
|
.uk-width-expand
|
|
h1(style="line-height: 1em;").uk-margin-remove= userProfile.displayName || userProfile.username || userProfile.email
|
|
|
|
if Array.isArray(userProfile.badges) && (userProfile.badges.length > 0)
|
|
div(uk-grid).uk-grid-small
|
|
if userProfile.flags.isAdmin
|
|
.uk-width-auto
|
|
alert.uk-label.uk-label-danger Admin
|
|
if userProfile.flags.isModerator
|
|
.uk-width-auto
|
|
alert.uk-label.uk-label-danger Moderator
|
|
|
|
each badge in userProfile.badges
|
|
.uk-width-auto
|
|
alert.uk-label= badge
|
|
|
|
p Welcome to #[+renderSiteLink()]. This app/site really doesn't do anything at all other than provide everything needed for building distributed communities of web applications that all talk to each other and share information in new and easy ways.
|