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 <h2>pinned posts:</h2> 12 <div> 13 @for post in pinned_posts 14 @include 'components/post_small.html' 15 @end 16 </div> 17 @end 18 19 <h2>recent posts:</h2> 20 <div> 21 @if recent_posts.len > 0 22 @for post in recent_posts 23 @include 'components/post_small.html' 24 @end 25 @else 26 <p>none, you could be the first!</p> 27 @end 28 </div> 29</div> 30 31@include 'partial/footer.html'