mirror of
https://github.com/hkalexling/Mango.git
synced 2026-04-24 00:03:12 -04:00
23 lines
772 B
Plaintext
23 lines
772 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<id>urn:mango:index</id>
|
|
|
|
<link rel="self" href="<%= base_url %>opds/" type="application/atom+xml;profile=opds-catalog;kind=navigation" />
|
|
<link rel="start" href="<%= base_url %>opds/" type="application/atom+xml;profile=opds-catalog;kind=navigation" />
|
|
|
|
<title>Library</title>
|
|
|
|
<author>
|
|
<name>Mango</name>
|
|
<uri>https://github.com/hkalexling/Mango</uri>
|
|
</author>
|
|
|
|
<% titles.each do |t| %>
|
|
<entry>
|
|
<title><%= HTML.escape(t.display_name) %></title>
|
|
<id>urn:mango:<%= t.id %></id>
|
|
<link type="application/atom+xml;profile=opds-catalog;kind=navigation" rel="subsection" href="<%= base_url %>opds/book/<%= t.id %>" />
|
|
</entry>
|
|
<% end %>
|
|
</feed>
|