X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fresources%2Ftemplates%2Finclude%2FviewPost.html;h=1b8d1ad2871e153265473ae570b0c3459c33e629;hb=53b2adecec6cd19deff36735031eefdecac75701;hp=b46532f969524fdcdd2f50f01f57d9f246737c76;hpb=d100af6d02674395f77ee23cda8f82f015e264a0;p=Sone.git diff --git a/src/main/resources/templates/include/viewPost.html b/src/main/resources/templates/include/viewPost.html index b46532f..1b8d1ad 100644 --- a/src/main/resources/templates/include/viewPost.html +++ b/src/main/resources/templates/include/viewPost.html @@ -7,9 +7,9 @@
<%if post.loaded> <%ifnull !post.sone.profile.avatar> - <%post.sone.profile.avatar|image-link max-width==48 max-height==48 mode==enlarge title=="Avatar Image"> + <%post.sone.profile.avatar|build-id sone=post.sone|image-link max-width==48 max-height==48 mode==enlarge title=="Avatar Image"> <%else> - Avatar Image + Avatar Image <%/if> <%else> Avatar Image @@ -18,23 +18,47 @@
class="hidden"<%/if>> - <%if post.hasRecipient> + <%if post.recipientId.present> → - <%ifnull post.recipient.orNull> + <%if !post.recipient.present> <%else> <%/if> <%/if> <% post.text|html|store key==originalText text==true> - <% post.text|parse sone=post.sone|store key==parsedText text==true> - <% post.text|parse sone=post.sone length=core.preferences.charactersPerPost cut-off-length=core.preferences.postCutOffLength|store key==shortText text==true> + <% post.text|parse sone=post.sone|store key==parts> + <% parts|render|store key==parsedText text==true> + <% parts|render length=core.preferences.charactersPerPost cut-off-length=core.preferences.postCutOffLength|store key==shortText text==true>
<% originalText>
<% parsedText>
<% shortText>
<%if !shortText|match value=parsedText><%if !raw><%= View.Post.ShowMore|l10n|html><%/if><%/if> <%if !shortText|match value=parsedText><%if !raw><%/if><%/if>
+ <%foreach parts part> + <%if part.class.simpleName|match value==AlbumPart> +
+
+
<% part.album.title|html>
+
<%= View.Post.LinkedAlbum.SizeAndAuthor|l10n 0=part.album.sone.niceName 1=part.album.images.size|html>
+
+ <%foreach part.album.images image> +
+ +
+
<% image.title|html>
+
<% image.description|parse sone=post.sone|render>
+
+
+ <%/foreach> +
+ <%/if> + <%/foreach>