Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

example.coleslawrc 1.1KB

1234567891011121314151617181920212223242526272829
  1. (:author "Brit Butler"
  2. :deploy-dir "/home/git/blog/"
  3. :domain "http://blog.redlinernotes.com"
  4. :feeds ("lisp")
  5. :plugins ((analytics :tracking-code "foo")
  6. (disqus :shortname "my-site-name")
  7. ; (incremental) ;; *Remove comment to enable incremental builds.
  8. (mathjax)
  9. (sitemap)
  10. (static-pages)
  11. ; (versioned) ;; *Remove comment to enable symlinked, timestamped deploys.
  12. )
  13. :routing ((:post "posts/~a")
  14. (:tag-index "tag/~a")
  15. (:month-index "date/~a")
  16. (:numeric-index "~d")
  17. (:feed "~a.xml")
  18. (:tag-feed "tag/~a.xml"))
  19. :sitenav ((:url "http://redlinernotes.com/" :name "Home")
  20. (:url "http://twitter.com/redline6561" :name "Twitter")
  21. (:url "http://github.com/redline6561" :name "Code")
  22. (:url "http://soundcloud.com/redlinernotes" :name "Music")
  23. (:url "http://redlinernotes.com/docs/talks/" :name "Talks"))
  24. :staging-dir "/tmp/coleslaw/"
  25. :title "Improved Means for Achieving Deteriorated Ends"
  26. :theme "hyde")
  27. ;; * Prerequisites described in plugin docs.