type entry = {
updated : Date.date; |
author : Cow.Atom.author; |
subject : string; |
body : body; |
permalink : string; |
}
val html_of_author : Cow.Atom.author -> Cow.Html.t
val atom_date : Date.date -> int * Date.month * int * int * int
val body_of_entry : Atom_feed.t -> entry -> Cow.Html.t Lwt.t
val html_of_entry : Atom_feed.t -> entry -> Cow.Html.t Lwt.t
val html_of_index : Atom_feed.t -> Cow.Html.t Lwt.t
val permalink : Atom_feed.t -> entry -> string
val html_of_recent_updates : Atom_feed.t -> entry list -> Cow.Html.t
val html_of_page : content:Cow.Html.t Lwt.t -> sidebar:Cow.Html.t -> Cow.Html.t Lwt.t
val permalink_exists : string -> entry list -> bool
val atom_entry_of_ent : Atom_feed.t -> entry -> Cow.Atom.entry Lwt.t
val to_atom : feed:Atom_feed.t -> entries:entry list -> Cow.Atom.feed Lwt.t