1234567891011121314151617181920212223242526272829303132 |
- (:author "Lily Carpenter"
- :deploy-dir "dist/"
- :staging-dir "staging/"
- :blog-index "blog"
- :site-index-page "about.html"
- :domain "https://azrazalea.net"
- :feeds ("blog")
- :plugins (;; (analytics :tracking-code "foo")
- ;; (disqus :shortname "my-site-name")
- ;; (incremental) ;; *Remove comment to enable incremental builds.
- ;; (mathjax)
- ;; (sitemap)
- (static-pages)
- ;; (versioned) ;; *Remove comment to enable symlinked, timestamped deploys.
- ;; (heroku)
- ;; My custom plugins
- (cl-who-renderer) ;; *cl-who post/page format
- )
- :routing ((:post "posts/~a")
- (:tag-index "tag/~a")
- (:month-index "date/~a")
- (:numeric-index "~d")
- (:feed "~a.xml")
- (:tag-feed "tag/~a.xml"))
- :sitenav ((:url "blog.html" :name "Blog" :relative t)
- (:url "projects.html" :name "Projects" :relative t)
- (:url "pgp.html" :name "PGP Info" :relative t)
- (:url "https://keybase.io/azrazalea" :name "Keybase/Social Links"))
- :title "Azrazalea.net"
- :theme "azrazalea-net")
|