From 20fc8a58244d769f2542aeaae00fff0a1b6b17bd Mon Sep 17 00:00:00 2001 From: iacore Date: Thu, 21 Mar 2024 18:48:35 +0000 Subject: [PATCH] finish adding atom feed now it only shows image thumbnail, not full image. is a problem for Atom feed since I want to see the full image. --- views/pages/user.atom.jet.html | 37 ++++++++++++++++++++++------------ 1 file changed, 24 insertions(+), 13 deletions(-) diff --git a/views/pages/user.atom.jet.html b/views/pages/user.atom.jet.html index af81054..dbc9d6f 100644 --- a/views/pages/user.atom.jet.html +++ b/views/pages/user.atom.jet.html @@ -2,31 +2,42 @@ {{ BaseURL }}/users/{{ User.ID }}/{{ Category }} - - - + + + {{ if Page - 1 >= 1 }} - + {{ end }} {{ if Page + 1 <= PageLimit }} - + {{ end }} {{ Updated }} {{ Title }} {{ User.Name }} - http://example.com/TK + {{ BaseURL }}/users/{{ User.ID }}/ + + {{ range User.Artworks }} - TK: art URL - - - TK - TK: ISO8601 time - + {{ BaseURL }}/artworks/{{ .ID }}/ + + {{ .Title }} + + {{ .ArtistName }} + {{ BaseURL }}/users/{{ .ArtistID }}/ + +
- TK: xhtml content here +
+ +
Pages: {{ .Pages }}
+
XRestrict: {{ .XRestrict }}
+
AiType: {{ .AiType }}
+
Bookmarked: {{ .Bookmarked }}
+
IllustType: {{ .IllustType }}
+ {{ end }}
\ No newline at end of file