X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2FviewSone.html;h=d80818a54c4319c2695ed625633e2a7895c9c9ca;hp=21bd83caca5ca8484547ff8d27b2550234d1bbed;hb=0df5e91852f737d760c5a9f54c5667309fbadcc2;hpb=e6f85fc6d33b182351e8fff6d5d67bd83c70b7d8 diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index 21bd83c..d80818a 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -1,29 +1,109 @@ -
+<%include include/head.html> - <%ifnull sone.name> + + + + <%ifnull sone> + +

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

+ +

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

+ + <%elseifnull sone.name>

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

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

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

+

+ <%= Page.ViewSone.UnknownSone.LinkToWebOfTrust|l10n|html> + <%= Page.ViewSone.Profile.Name.WoTLink|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.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html>

+
+
<%= Page.ViewSone.Profile.Label.Name|l10n|html>
+ +
+ + <%foreach sone.albums album> + <%first> +
+
<%= Page.ViewSone.Profile.Label.Albums|l10n|html>
+
+ <%/first> + <%album.title|html><%notlast>, <%/notlast> + <%last> +
+
+ <%/last> + <%/foreach> -
- <%foreach sone.posts post> -
- -
<% post.text|html>
-
<% post.time|date format="MMM d, yyyy, HH:mm:ss">
+ <%foreach sone.profile.fields field> +
+
<% field.name|html>
+
<% field.value|parse>
- <%foreachelse> -
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach> -
+ + <%ifnull ! currentSone> + <%if ! sone.current> +

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

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

<%= Page.ViewSone.PostList.Title|l10n|replace needle="{sone}" replacementKey=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}" replacementKey=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> -
+<%include include/tail.html>