(define-module (content) #:use-module ((atom) #:prefix atom:)) (define me (atom:person "Ekaitz" #:email "ekaitz@elenq.tech" #:uri "https://elenq.tech")) (define feed (atom:feed #:title "Mi feed" #:subtitle "Este es mi feed" #:uri "https://thoughts.elenq.tech")) (atom:entry feed #:title "first entry" #:published "2023-03-01" #:authors (list me) #:summary-html '(p "Este es el resumen") #:content-html '(p "Este es el contenido") #:categories (list "una" "dos" "tres") #:media (list (atom:media "../HOLA.webm" #:title "01" #:uri ""))) (atom:render feed)