Files
PixivFE/views/pages/user.atom.jet.html
iacore fc3144f1a0 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.
2024-03-22 12:18:42 +00:00

43 lines
1.8 KiB
HTML

<?xml version="1.0" encoding="utf-8"?>{* <?xml-stylesheet href="/feed.xsl" type="text/xsl"?> *}
<feed xmlns="http://www.w3.org/2005/Atom">
<id>{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}</id>
<link rel="alternate" href="{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}"/>
<link rel="self" href="{{ PageURL }}"/>
<link rel="first" href="{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}.atom.xml?page=1"/>
<link rel="last" href="{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}.atom.xml?page={{ PageLimit }}"/>
{{ if Page - 1 >= 1 }}
<link rel="previous" href="{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}.atom.xml?page={{ Page - 1 }}"/>
{{ end }}
{{ if Page + 1 <= PageLimit }}
<link rel="next" href="{{ BaseURL }}/users/{{ User.ID }}/{{ Category }}.atom.xml?page={{ Page + 1 }}"/>
{{ end }}
<updated>{{ Updated }}</updated>
<title>{{ Title }}</title>
<author>
<name>{{ User.Name }}</name>
<uri>{{ BaseURL }}/users/{{ User.ID }}/</uri>
</author>
{{ range User.Artworks }}
<entry>
<id>{{ BaseURL }}/artworks/{{ .ID }}/</id>
<link rel="alternate" href="{{ BaseURL }}/artworks/{{ .ID }}/"/>
<title>{{ .Title }}</title>
<author>
<name>{{ .ArtistName }}</name>
<uri>{{ BaseURL }}/users/{{ .ArtistID }}/</uri>
</author>
<content type="xhtml" xml:base="{{ BaseURL }}">
<div xmlns="http://www.w3.org/1999/xhtml">
<div><img src="{{ .Thumbnail }}"></img></div>
<div><a href="{{ BaseURL }}/users/{{ .ArtistID }}/">{{ .ArtistName }}</a></div>
<div>Pages: {{ .Pages }}</div>
<div>XRestrict: {{ .XRestrict }}</div>
<div>AiType: {{ .AiType }}</div>
<div>Bookmarked: {{ .Bookmarked }}</div>
<div>IllustType: {{ .IllustType }}</div>
</div>
</content>
</entry>
{{ end }}
</feed>