@include 'partial/header.html'

@{(app.get_user_by_id(post.author_id) or { app.get_unknown_user() }).get_name()} - @if replying_to_post.id == 0 @post.title @else replied to @{replying_to_user.get_name()} @end @if post.nsfw (nsfw) @end


@if post.nsfw
click to show post (nsfw)
@post.body
@else
@post.body
@end

likes: @{app.get_net_likes_for_post(post.id)}

posted at: @post.posted_at

@if ctx.is_logged_in() && !user.automated

reply


@end @if ctx.is_logged_in() && (post.author_id == user.id || user.admin)
@if post.author_id == user.id

manage post:

edit

@end @if user.admin
admin powers
@end
@end
@include 'partial/footer.html'