a mini social media app for small communities
1@include 'partial/header.html'
2
3<h1>@app.config.instance.welcome</h1>
4
5@if motd != ''
6<p><em>@motd</em></p>
7@end
8
9<div>
10 @if pinned_posts.len > 0
11 <div id="pinned-posts">
12 <h2>pinned posts:</h2>
13 @for post in pinned_posts
14 @include 'components/post_small.html'
15 @end
16 </div>
17 <br>
18 @end
19
20 <div id="recent-posts">
21 <h2>recent posts:</h2>
22 @if recent_posts.len > 0
23 @for post in recent_posts
24 @include 'components/post_small.html'
25 @end
26 @else
27 <p>none, you could be the first!</p>
28 @end
29 </div>
30</div>
31
32@include 'partial/footer.html'