Show posts of Sone and friends on index page.
[Sone.git] / src / main / resources / templates / index.html
index 154ff3e..7aa558b 100644 (file)
                </form>
        </div>
 
+       <h1><%= Page.Index.PostList.Title|l10n|html></h1>
+
+       <div>
+               <%foreach posts post>
+                       <div>
+                               <div class="author"><% post.sone.name|html></div>
+                               <div class="text"><% post.text|html></div>
+                               <div class="time"><% post.time|date format="MMM d, yyyy, HH:mm:ss"></div>
+                       </div>
+               <%foreachelse>
+                       <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
+               <%/foreach>
+       </div>
+
 </div>
\ No newline at end of file