a mini social media app for small communities
1@include 'partial/header.html'
2
3@if ctx.is_logged_in()
4
5@if replying
6<h1>reply to @{replying_to_user.get_name()} with...</h1>
7<p>(replying to <a href="/post/${replying_to}">this</a>)</p>
8@else
9<h2>make a post...</h2>
10@end
11@include 'components/new_post.html'
12@else
13<p>uh oh, you need to be logged in to see this page</p>
14@end
15
16@include 'partial/footer.html'