X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=c4de1686b99d24584114d72aad47e4fc7f360830;hp=292ab4416627a32d92aefdc41981e22d058839be;hb=0f7a91f4fa689a4084d7db5987a534b4b4fc3866;hpb=a81721b827e646ee30aef774793918bcb1e336a2 diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 292ab44..c4de168 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -1,38 +1,112 @@ <%include include/head.html> - + + - <%ifnull sone.name> + <%ifnull sone>

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

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

+ <%= Page.ViewSone.NoSone.Description|l10n|replace needle=="{sone}" replacement=soneId|html> + <%= Page.ViewSone.Profile.Name.WoTLink|l10n|html> +

+ + <%elseifnull sone.name> + +

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

+ +

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

+

+ <%= Page.ViewSone.UnknownSone.LinkToWebOfTrust|l10n|html> + <%= Page.ViewSone.Profile.Name.WoTLink|l10n|html> +

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

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

+ +
+
<%= Page.ViewSone.Profile.Label.Name|l10n|html>
+
<% sone.niceName|html> (<%= Page.ViewSone.Profile.Name.WoTLink|l10n|html>)
+
-

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

+ <%foreach sone.albums album> + <%first> +
+
<%= Page.ViewSone.Profile.Label.Albums|l10n|html>
+
+ <% =Page.ViewSone.Profile.Albums.Text.All|l10n|html>, + <%/first> + <%album.title|html><%notlast>, <%/notlast> + <%last> +
+
+ <%/last> + <%/foreach> -
- <%foreach sone.friends sone> - <%include include/viewSone.html> - <%foreachelse> -
<%= Page.ViewSone.Following.FollowingNone.Text|l10n|html>
+ <%foreach sone.profile.fields field> +
+
<% field.name|html>
+
<% field.value|parse>
+
<%/foreach> -
+ + <%ifnull ! currentSone> + <%if ! sone.current> +

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

+ +
+ + + + +
+ +
+
+ + +
+ <%/if> + <%/if> + +

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

+ + <%foreach posts post> + <%first> +
+ <%include include/pagination.html pagination=postPagination pageParameter==postPage paginationName==post-navigation> + <%/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 repliedPosts post> + <%first> +

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

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