Update year in copyright lines
[Sone.git] / src / main / resources / templates / index.html
index c4c251a..f4343fc 100644 (file)
@@ -1,72 +1,21 @@
 <%include include/head.html>
 
-       <script language="javascript">
-               /* register input field/textarea swap. */
-               $(document).ready(function() {
-                       registerInputTextareaSwap("#sone input.createpost", "What are you doing?");
-                       registerInputTextareaSwap("#sone input.reply-input", "Write a Reply…");
-
-                       /* hide all the “create reply” forms until a link is clicked. */
-                       $("#sone .post").each(function() {
-                               postId = $(this).attr("id");
-                               commentElement = (function(postId) {
-                                       var commentElement = $("<div>Comment</div>").addClass("show-reply-form").click(function() {
-                                               replyElement = $("#sone .post#" + postId + " .create-reply");
-                                               replyElement.removeClass("hidden");
-                                               replyElement.removeClass("light");
-                                               (function(replyElement) {
-                                                       replyElement.find("input.reply-input").blur(function() {
-                                                               if ($(this).hasClass("default")) {
-                                                                       replyElement.addClass("light");
-                                                               }
-                                                       }).focus(function() {
-                                                               replyElement.removeClass("light");
-                                                       });
-                                               })(replyElement);
-                                               replyElement.find("input.reply-input").focus();
-                                       });
-                                       return commentElement;
-                               })(postId);
-                               $(this).find(".create-reply").addClass("hidden");
-                               $(this).find(".status-line .time").each(function() {
-                                       $(this).after(commentElement.clone(true));
-                               });
-                       });
-               });
-       </script>
-
-       <h1><%= Page.Index.Page.Title|l10n|insert needle="{sone}" key=currentSone.name|html></h1>
-
-       <div>
-               <form action="createPost.html" method="post">
-                       <div>
-                               <label for="text"><%= Page.Index.Label.Text|l10n|html></label>
-                               <input class="createpost" name="text" />
-                       </div>
-                       <div>
-                               <button type="submit"><%= Page.Index.Button.Post|l10n|html></button>
-                       </div>
-               </form>
-       </div>
+       <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>
+                       <p><%= Page.Index.PostList.Text.NoPostYet|l10n|html></p>
+                       <p><%= Page.Index.PostList.Text.FollowSomeSones|l10n|html|replace needle=='{link}' replacement=='<a href="knownSones.html">'|replace needle=='{/link}' replacement=='</a>'></p>
+                       <p><%= Page.Index.PostList.Text.AutoFollowOption|l10n|html|replace needle=='{link}' replacement=='<a href="options.html">'|replace needle=='{/link}' replacement=='</a>'></p>
                <%/foreach>
+               <%include include/pagination.html pageParameter==page>
        </div>
 
-       <h1><%= Page.Index.AddSone.Title|l10n|html></h1>
-
-       <div><%= Page.Index.AddSone.Description|l10n|html></div>
-
-       <form action="addSone.html" method="post">
-               <input type="hidden" name="formPassword" value="<% formPassword|html>" />
-               <input id="addsone" type="text" name="request-uri" />
-               <button type="submit"><%= Page.Index.AddSone.Button.Add|l10n|html></button>
-       </form>
-
 <%include include/tail.html>