summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Babenhauserheide <arne.babenhauserheide@kit.edu>2015-04-13 15:42:08 +0200
committerDavid Thompson <dthompson2@worcester.edu>2015-04-13 17:52:34 -0400
commit87aaae2585f780fb2cb538f3b890107078e79a1c (patch)
tree009c66fda3d0588e939bab5acf2c0b2e9062319c
parentba85e9e6c758432ca77e13e3c53643a8887c1a17 (diff)
README: Fix date in example config.
* README.md: Add missing argument to make-date. Use quasiquote and unquote to apply make-date.
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index c07e81c..4b597a4 100644
--- a/README.md
+++ b/README.md
@@ -29,10 +29,10 @@ Example Configuration
(site #:title "Built with Guile"
#:domain "dthompson.us"
#:default-metadata
- '((author . "David Thompson")
+ `((author . "David Thompson")
(email . "davet@gnu.org")
;; If I'm careless and forget a date, use the UNIX epoch.
- (date . (make-date 0 0 0 0 1 1 1970)))
+ (date . ,(make-date 0 0 0 0 1 1 1970 0)))
#:readers (list sxml-reader html-reader)
#:builders (list (blog)
(atom-feed)