site_vineetk

Source for vineetk.net website
Log | Files | Refs | LICENSE

haunt.scm (766B)


      1 (use-modules (haunt asset)
      2 	     (haunt builder blog)
      3 	     (haunt builder atom)
      4 	     (haunt builder assets)
      5 	     (haunt reader commonmark)
      6 	     (haunt publisher rsync)
      7 	     (haunt post)
      8 	     (haunt site)
      9 	     (theme))
     10 
     11 (site #:title "Vineet's site"
     12       #:domain "vineetk.net"
     13       #:default-metadata
     14       '((author . "Vineet K")
     15 	(email . "me@vineetk.net"))
     16       #:readers (list commonmark-reader)
     17       #:builders (list (blog #:theme vin-theme
     18 			     #:collections
     19 			     `(("Posts" "index.html" ,posts/reverse-chronological)))
     20 		       (atom-feed)
     21 		       (static-directory "images")
     22 		       (static-directory "static"))
     23       #:publishers (list (rsync-publisher #:destination "/var/www/vineetk_html/"
     24 					  #:user "vin"
     25 					  #:host "saklas")))