@include 'partial/header.html'

@{viewing.get_name()} (@@@viewing.username) @if viewing.pronouns != '' (@viewing.pronouns) @end @if viewing.muted [muted] @end @if viewing.automated [automated] @end @if viewing.admin [admin] @end

@if app.logged_in_as(mut ctx, viewing.id)

this is you!

@if !user.automated @include 'components/new_post.html'
@end @end @if viewing.bio != ''

bio:

@viewing.bio

@end @if app.logged_in_as(mut ctx, viewing.id)

saved posts

saved for later


@end

recent posts:

@if posts.len > 0 @for post in posts @include 'components/post_small.html' @end @else

no posts!

@end
@if ctx.is_logged_in() && user.admin

admin powers:

@if !user.muted @else @end
@end @if viewing.bio != '' @end @include 'partial/footer.html'