X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=f915628ce90104737f047f99e5e61474d3b3b718;hb=543601314f9213c4d4b5c8ae1177cdb2ab94a854;hp=84c9c51e8903fe486cf63189dc772c09a05b0e6c;hpb=1c57e8be327fe76dbc82ba438bcaeb4023259e71;p=Sone.git diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 84c9c51..f915628 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -1,40 +1,91 @@ <%include include/head.html> - <%ifnull sone.name> + + + + <%ifnull sone> + +

<%= Page.ViewSone.Page.TitleWithoutSone|l10n|html>

+ +

<%= Page.ViewSone.NoSone.Description|l10n|replace needle="{sone}" replacementKey=sone.id|html>

+ + <%elseifnull sone.name>

<%= Page.ViewSone.Page.TitleWithoutSone|l10n|html>

-
<%= Page.ViewSone.UnknownSone.Description|l10n|html>
+

<%= Page.ViewSone.UnknownSone.Description|l10n|html>

<%else> -

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

+ <%if ! sone.current> + <%include include/viewSone.html> + <%/if> + +

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

+ +
+
<%= Page.ViewSone.Profile.Label.Name|l10n|html>
+
<% sone.niceName|html> (<%= Page.ViewSone.Profile.Name.WoTLink|l10n|html>)
+
+ + <%foreach sone.profile.fields field> +
+
<% field.name|html>
+
<% field.value|parse>
+
+ <%/foreach> -

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

+ <%ifnull ! currentSone> + <%if ! sone.current> +

<%= Page.ViewSone.WriteAMessage|l10n|html>

- <%if ! sone.isCurrent> - <%if sone.friend> -
<%= Page.ViewSone.UnfollowSone.Text|l10n|html>
- <%else> -
<%= Page.ViewSone.FollowSone.Text|l10n|html>
+
+ + + + +
+ +
+
+ + +
<%/if> <%/if> -
- <%foreach sone.posts post> - <%include include/viewPost.html> - <%foreachelse> -
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
- <%/foreach> -
+

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

-

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

+ <%foreach posts post> + <%first> +
+ <%include include/pagination.html pagination=postPagination pageParameter==postPage> + <%/first> + <%include include/viewPost.html> + <%last> + <%include include/pagination.html pagination=postPagination pageParameter==postPage> +
+ <%/last> + <%foreachelse> +
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
+ <%/foreach> -
- <%foreach sone.friends sone> - <%include include/viewSone.html> - <%/foreach> -
+ <%foreach repliedPosts post> + <%first> +

<%= Page.ViewSone.Replies.Title|l10n|html|replace needle="{sone}" replacementKey=sone.niceName>

+
+ <%include include/pagination.html pagination=repliedPostPagination pageParameter==repliedPostPage> + <%/first> + <%include include/viewPost.html> + <%last> + <%include include/pagination.html pagination=repliedPostPagination pageParameter==repliedPostPage> +
+ <%/last> + <%/foreach> <%/if>