Move “add Sone” form to “known Sones” page.
[Sone.git] / src / main / resources / templates / index.html
1 <%include include/head.html>
2
3         <script language="javascript">
4                 /* register input field/textarea swap. */
5                 $(document).ready(function() {
6                         registerInputTextareaSwap("#sone input.reply-input", "Write a Reply…");
7                         addCommentLinks();
8                 });
9         </script>
10
11         <h1><%= Page.Index.PostList.Title|l10n|html></h1>
12
13         <div id="posts">
14                 <%foreach posts post>
15                         <%include include/viewPost.html>
16                 <%foreachelse>
17                         <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
18                 <%/foreach>
19         </div>
20
21 <%include include/tail.html>