X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=60d65639ee52205c7399c4d90a1f4dc108a5efc7;hb=fb3be9108a728d9330eabb8e6e5b36ab1af685da;hp=a7686c9e759c2bf72abcd5b7e96cc005093dca16;hpb=d71e8718a32c7053b352ba6d76100c24ecbeacea;p=Sone.git diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index a7686c9..60d6563 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -1,4 +1,4 @@ -
+<%include include/head.html> <%ifnull sone.name> @@ -8,61 +8,45 @@ <%else> -

<%= Page.ViewSone.Page.TitleWithSone|l10n|insert needle="{sone}" key=sone.niceName|html>

- -

<%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html>

- - <%if ! sone.isCurrent> - <%if sone.isFriend> -
<%= Page.ViewSone.UnfollowSone.Text|l10n|html>
- <%else> -
<%= Page.ViewSone.FollowSone.Text|l10n|html>
- <%/if> + <%if ! sone.current> + <%include include/viewSone.html> <%/if> +
+
<% sone.requestUri|html>
+
+
- <%foreach sone.posts post> -
- -
<% post.text|html>
-
<% post.time|date format="MMM d, yyyy, HH:mm:ss">
-
- <%foreach post.replies reply> -
- -
<% reply.text|html>
-
<% reply.time|date format="MMM d, yyyy, HH:mm:ss">
-
- <%/foreach> -
-
- - - - -
-
+ <%getpage parameter=postPage> + <%paginate list=sone.posts pagesize=2> + <%= postPage|store key=pageParameter> + <%include include/pagination.html> + <%foreach pagination.items post> + <%first> +

<%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html>

+ <%/first> + <%include include/viewPost.html> <%foreachelse>
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach> + <%include include/pagination.html>
- +

<%= Page.ViewSone.Following.Title|l10n|html>

- +
- <%foreach sone.friends friend> - <%first> - - <%/last> + <%getpage parameter=sonePage> + <%paginate list=sone.friends pagesize=2> + <%= sonePage|store key=pageParameter> + <%include include/pagination.html> + <%foreach pagination.items sone> + <%include include/viewSone.html> <%foreachelse>
<%= Page.ViewSone.Following.FollowingNone.Text|l10n|html>
<%/foreach> + <%include include/pagination.html>
<%/if> -
+<%include include/tail.html>