a mini social media app for small communities
at main 231 B view raw
1@include 'partial/header.html' 2 3<h1>posts with #@{tag}: (*@{offset} to *@{offset+10})</h1> 4 5<div> 6 @for post in app.get_posts_with_tag(tag, offset) 7 @include 'components/post_mini.html' 8 @end 9</div> 10 11@include 'partial/footer.html'