haunt.scm 569 B

123456789101112131415161718
  1. (use-modules (haunt site)
  2. (haunt reader)
  3. (haunt reader texi)
  4. (haunt builder blog)
  5. (haunt builder atom)
  6. (haunt builder assets))
  7. (site #:title "Mathieu Lirzin"
  8. #:domain "mathieu.lirzin.emi.u-bordeaux.fr"
  9. #:default-metadata
  10. '((author . "Mathieu Lirzin")
  11. (email . "mthl@gnu.org"))
  12. #:readers (list texinfo-reader)
  13. #:builders (list (blog)
  14. (atom-feed)
  15. (atom-feeds-by-tag)
  16. (static-directory "images")))