Next: Posts, Up: Programming Interface [Contents][Index]
(use-modules (haunt site))
A site object defines all of the properties for a Haunt website: The site name, domain name, where blog posts are found, what post formats are understood, which procedures are used to build the site, where the output files are written to, etc.
default-file-filter
] [#:build-directory "site"] [#:default-metadata '()] [#:make-slug post-slug
] [#:readers '()] [#:builders '()]Create a new site object. All arguments are optional:
The name of the site.
The directory where posts are found.
A predicate procedure that returns #f
when a post file should
be ignored, and #t
otherwise. Emacs temporary files are
ignored by default.
The directory that generated pages are stored in.
An alist of arbitrary default metadata for posts whose keys are symbols.
A procedure generating a file name slug from a post.
A list of reader objects for processing posts.
A list of procedures for building pages from posts.
Return #t
if obj is a site object.
Return the title of site.
Return the domain of site.
Return the posts directory for site.
Return the file filter procedure for site.
Return the build directory of site.
Return the slug constructor for site.
Return the list of reader procedures for site.
Return the list of builder procedures for site.
Next: Posts, Up: Programming Interface [Contents][Index]