Don’t always create a Sone for a given ID.
[Sone.git] / src / main / resources / templates / viewSone.html
index 71fba4f..534c5ff 100644 (file)
@@ -1,35 +1,36 @@
 <%include include/head.html>
 
-       <script language="javascript">
-               $(document).ready(function() {
-                       addCommentLinks();
-               });
-       </script>
+       <%ifnull sone>
 
-       <%ifnull sone.name>
+               <h1><%= Page.ViewSone.Page.TitleWithoutSone|l10n|html></h1>
+
+               <p><%= Page.ViewSone.NoSone.Description|l10n|insert needle="{sone}" key=sone.id|html></p>
+
+       <%elseifnull sone.name>
 
                <h1><%= Page.ViewSone.Page.TitleWithoutSone|l10n|html></h1>
 
-               <div><%= Page.ViewSone.UnknownSone.Description|l10n|html></div>
+               <p><%= Page.ViewSone.UnknownSone.Description|l10n|html></p>
 
        <%else>
 
-               <%include include/viewSone.html>
+               <%if ! sone.current>
+                       <%include include/viewSone.html>
+               <%/if>
+
+               <h1><%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html></h1>
 
                <div id="posts">
-                       <%foreach sone.posts post>
+                       <%getpage parameter=postPage>
+                       <%paginate list=sone.posts pagesize=25>
+                       <%= postPage|store key=pageParameter>
+                       <%include include/pagination.html>
+                       <%foreach pagination.items post>
                                <%include include/viewPost.html>
                        <%foreachelse>
                                <div><%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html></div>
                        <%/foreach>
-               </div>
-
-               <h1><%= Page.ViewSone.Following.Title|l10n|html></h1>
-
-               <div id="following">
-                       <%foreach sone.friends sone>
-                               <%include include/viewSone.html>
-                       <%/foreach>
+                       <%include include/pagination.html>
                </div>
 
        <%/if>