summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2015-04-13 19:40:55 -0400
committerDavid Thompson <dthompson2@worcester.edu>2015-04-13 19:43:35 -0400
commit3592829387367d54dcc4dc1c5cd4862586cc705d (patch)
treec4768e66eed08ce9aef17f3aa68adf4ce18fab43 /README.md
parent3614b3e9b91c17773af75832f8fbafc24d105898 (diff)
post: Add post-date procedure.
* haunt/post.scm (%default-date): New variable. (post-date): New procedure. * haunt/builder/atom.scm (post->atom-entry): Use post-date. * README.md (Example Configuration): Remove date from default metadata.
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 2 insertions, 4 deletions
diff --git a/README.md b/README.md
index 4b597a4..5634ac3 100644
--- a/README.md
+++ b/README.md
@@ -29,10 +29,8 @@ Example Configuration
(site #:title "Built with Guile"
#:domain "dthompson.us"
#:default-metadata
- `((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 0)))
+ '((author . "David Thompson")
+ (email . "davet@gnu.org"))
#:readers (list sxml-reader html-reader)
#:builders (list (blog)
(atom-feed)