kreten-plus/kreten/theme.scm

17 lines
449 B
Scheme

(define-module (kreten theme)
#:use-module (kreten templates)
#:use-module (haunt builder blog)
#:export (kreten-theme))
(define kreten-theme
(theme #:name "kreten.si"
#:layout
(lambda (site title body)
(base-tmpl
site body
#:title title))
;; #:post-template post-tmpl
;; #:collection-template collection-tmpl
;; #:pagination-template pagination-tmpl
))