aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/feed.rss
blob: dfce578ab627aaf55fdc9450c584351b1469cb21 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
  <channel>
   <title>Bienvenido a Internet BBS/IB</title>
   <link>https://bienvenidoainternet.org/</link>
   <description>El BBS/IB más activo de la esfera hispana.</description>
   <language>es</language>
   <webMaster>burocracia@bienvenidoainternet.org (Staff ★)</webMaster>
   <image>
     <url>https://bienvenidoainternet.org/rss_logo.png</url>
     <title>Bienvenido a Internet BBS/IB</title>
     <link>https://bienvenidoainternet.org/</link>
     <width>144</width>
     <height>144</height>
   </image>
   <?py for post in posts: ?>
      <item>
        <title>${post['board_name']}: #{post['content']}</title>
        <pubDate>${post['timestamp_formatted']}</pubDate>
        <link>https://bienvenidoainternet.org#{post['url']}</link>
        <description>${post['content']}</description>
      </item>
   <?py #endfor ?>
  </channel>
</rss>