From: Lucian Mogosanu Date: Tue, 2 Jul 2019 13:57:09 +0000 (+0300) Subject: config.lisp: Use standard Lisp-style comments X-Git-Tag: v0.11~33 X-Git-Url: https://git.mogosanu.ro/?a=commitdiff_plain;h=47e2e5e3bdf764919bb7f513a0ec710ae9d4b3f0;p=thetarpit.git config.lisp: Use standard Lisp-style comments --- diff --git a/config.lisp.example b/config.lisp.example index 7b70ffa..1daf509 100644 --- a/config.lisp.example +++ b/config.lisp.example @@ -1,12 +1,12 @@ -;; Tarpit Lisp Blog Scaffolding -;; -;; A static blog generator, config file +;;;; Tarpit Lisp Blog Scaffolding +;;;; +;;;; A static blog generator, config file -; The site installation's base directory +;; The site installation's base directory (defvar *lbs-base* "/home/thetarpit/") -; A list of paths where we look for Lisp dependencies, e.g. libraries +;; A list of paths where we look for Lisp dependencies, e.g. libraries (defvar *lbs-path* nil) -; Path to the directory where the static site will be spat +;; Path to the directory where the static site will be spat (defvar *lbs-site* (concatenate 'string *lbs-base* "_site/"))