My personal website, goal is to have a blog and a "resume".

.coleslawrc 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. (:author "Lily Carpenter"
  2. :deploy-dir "dist/"
  3. :staging-dir "staging/"
  4. :blog-index "blog"
  5. :site-index-page "about.html"
  6. :domain "https://azrazalea.net"
  7. :feeds ("blog")
  8. :plugins (;; (analytics :tracking-code "foo")
  9. ;; (disqus :shortname "my-site-name")
  10. ;; (incremental) ;; *Remove comment to enable incremental builds.
  11. ;; (mathjax)
  12. ;; (sitemap)
  13. (static-pages)
  14. ;; (versioned) ;; *Remove comment to enable symlinked, timestamped deploys.
  15. ;; (heroku)
  16. ;; My custom plugins
  17. (cl-who-renderer) ;; *cl-who post/page format
  18. )
  19. :routing ((:post "posts/~a")
  20. (:tag-index "tag/~a")
  21. (:month-index "date/~a")
  22. (:numeric-index "~d")
  23. (:feed "~a.xml")
  24. (:tag-feed "tag/~a.xml"))
  25. :sitenav ((:url "blog.html" :name "Blog" :relative t)
  26. (:url "projects.html" :name "Projects" :relative t)
  27. (:url "pgp.html" :name "PGP Info" :relative t)
  28. (:url "https://keybase.io/azrazalea" :name "Keybase/Social Links"))
  29. :title "Azrazalea.net"
  30. :theme "azrazalea-net")