X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=8d308a1a531d18a9a49112b6c635710a11ed3b34;hb=374fd8726663084c37cf7ce2d7f752ca7a4f888e;hp=a984ce50a6834c61a678526610c8ab7efb901c0a;hpb=d94f4ab1052fc15248396a062c56ffd45bfefb85;p=Sone.git diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index a984ce5..8d308a1 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -8,14 +8,22 @@ <%else> -

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

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

-

<%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.name|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>
- +
<% post.text|html>
<% post.time|date format="MMM d, yyyy, HH:mm:ss">
@@ -23,6 +31,22 @@
<%= 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>