Show name of current sone on index page.
[Sone.git] / src / main / resources / templates / index.html
index 154ff3e..f72ceb0 100644 (file)
@@ -1,6 +1,6 @@
 <div id="sone">
 
-       <h1><%= Page.Index.Page.Title|l10n|html></h1>
+       <h1><%= Page.Index.Page.Title|l10n|insert needle="{sone}" key=currentSone.name|html></h1>
 
        <div>
                <form action="createPost.html" method="post">
                </form>
        </div>
 
+       <h1><%= Page.Index.PostList.Title|l10n|html></h1>
+
+       <div id="posts">
+               <%foreach posts post>
+                       <div class="post">
+                               <div class="author"><a href="viewSone.html?sone=<% post.sone.id>"><% post.sone.niceName|html></a></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