README: Fix date in example config.
* README.md: Add missing argument to make-date. Use quasiquote and unquote to apply make-date.
This commit is contained in:
		
				
					committed by
					
						
						David Thompson
					
				
			
			
				
	
			
			
			
						parent
						
							ba85e9e6c7
						
					
				
				
					commit
					87aaae2585
				
			@@ -29,10 +29,10 @@ Example Configuration
 | 
				
			|||||||
(site #:title "Built with Guile"
 | 
					(site #:title "Built with Guile"
 | 
				
			||||||
      #:domain "dthompson.us"
 | 
					      #:domain "dthompson.us"
 | 
				
			||||||
      #:default-metadata
 | 
					      #:default-metadata
 | 
				
			||||||
      '((author . "David Thompson")
 | 
					      `((author . "David Thompson")
 | 
				
			||||||
        (email  . "davet@gnu.org")
 | 
					        (email  . "davet@gnu.org")
 | 
				
			||||||
        ;; If I'm careless and forget a date, use the UNIX epoch.
 | 
					        ;; 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)
 | 
					      #:readers (list sxml-reader html-reader)
 | 
				
			||||||
      #:builders (list (blog)
 | 
					      #:builders (list (blog)
 | 
				
			||||||
                       (atom-feed)
 | 
					                       (atom-feed)
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user