/** @jsxImportSource jsx-xml */ import { render } from "jsx-xml"; import RSSItem from "./RSSItem"; import { type Image } from "../../build"; export const rss = (images: Image[]) => { return render( {images.map((image) => ( ))} ).end({ headless: true }); }; function RSS({ children, lastPostDate }: any) { return ( Radiquum Photos Online Gallery of @radiquum https://radiquum.wah.su/photos/ en-us Photography CC BY-SA 4.0 {new Date().toUTCString()} {new Date(lastPostDate).toUTCString()} {children} ); }