Change code to use new way to specify filter parameters.
[Sone.git] / src / main / resources / templates / index.html
index 8f18974..482d4d1 100644 (file)
@@ -1,21 +1,19 @@
 <%include include/head.html>
 
-       <script language="javascript">
-               /* register input field/textarea swap. */
-               $(document).ready(function() {
-                       registerInputTextareaSwap("#sone input.reply-input", "WebInterface.DefaultText.Reply", "text", false);
-                       addCommentLinks();
-               });
-       </script>
+       <div class="page-id hidden">index</div>
 
        <h1><%= Page.Index.PostList.Title|l10n|html></h1>
 
+       <%include include/updateStatus.html>
+
        <div id="posts">
-               <%foreach posts post>
+               <%include include/pagination.html pageParameter==page paginationName==pagination-index>
+               <%foreach pagination.items post>
                        <%include include/viewPost.html>
                <%foreachelse>
                        <div><%= Page.Index.PostList.Text.NoPostYet|l10n|html></div>
                <%/foreach>
+               <%include include/pagination.html pageParameter==page>
        </div>
 
 <%include include/tail.html>