X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=46c98da65f8090e05c11bddf2c142f9b3813f65a;hb=db1981cee6635b3d9e56cb37d795bbe931046330;hp=21bd83caca5ca8484547ff8d27b2550234d1bbed;hpb=e6f85fc6d33b182351e8fff6d5d67bd83c70b7d8;p=Sone.git diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 21bd83c..46c98da 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,10 +8,18 @@ <%else> -

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

<%= 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> +
<%foreach sone.posts post>
@@ -19,11 +27,42 @@
<% 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> +
+
+ + + + +
+
<%foreachelse>
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach>
+

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

+ +
+ <%foreach sone.friends friend> + <%first> + + <%/last> + <%foreachelse> +
<%= Page.ViewSone.Following.FollowingNone.Text|l10n|html>
+ <%/foreach> +
+ <%/if> -
+<%include include/tail.html>