diff options
Diffstat (limited to 'src/html.scm')
-rw-r--r-- | src/html.scm | 34 |
1 files changed, 32 insertions, 2 deletions
diff --git a/src/html.scm b/src/html.scm index 18f568d..e957683 100644 --- a/src/html.scm +++ b/src/html.scm @@ -5,11 +5,41 @@ #:use-module (src mime-types) #:export (render person + person? + person-name + person-email + person-uri + post + post? + post-id + post-title + post-published + post-updated + post-authors + post-summary-html + post-content-html + post-categories + post-contributors + post-media + index + index? + index-title + index-short-description + index-long-description + index-uri + index-atom-feed-uri + index-author + index-posts + index-styles + index-scripts + media - css - js)) + media? + media-type + media-uri + media-path)) (define-record-type <index> (%make-index title short-description long-description uri atom-feed-uri author posts styles scripts) |