summaryrefslogtreecommitdiffstats
path: root/.coleslawrc
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-12-27 16:04:21 -0800
committerGravatar Tom Willemse2020-12-27 17:12:46 -0800
commitc9d38e16cb736b9692a3e7726ea9f0c00702230e (patch)
tree557439ddd04c4975167d06decea9395ba356ac6e /.coleslawrc
parent72e6b81dde8f08a249838be8d260b9d87f3466eb (diff)
downloadblog-c9d38e16cb736b9692a3e7726ea9f0c00702230e.tar.gz
blog-c9d38e16cb736b9692a3e7726ea9f0c00702230e.zip
Fix building on latest coleslaw
Diffstat (limited to '.coleslawrc')
-rw-r--r--.coleslawrc40
1 files changed, 40 insertions, 0 deletions
diff --git a/.coleslawrc b/.coleslawrc
new file mode 100644
index 0000000..3e26fa8
--- /dev/null
+++ b/.coleslawrc
@@ -0,0 +1,40 @@
+;;; -*- mode : lisp -*-
+(;; Required information
+ :author "Tom Willemse" ;; to be placed on post pages and in the copyright/CC-BY-SA notice
+ :deploy-dir "deploy/" ;; for Coleslaw's generated HTML to go in
+ :domain "//ryuslash.org/" ;; to generate absolute links to the site content. Note: with :cname option of gh-pages, this requires a url scheme, e.g. https://fake.org
+ :routing ((:post "posts/~a") ;; to determine the URL scheme of content on the site
+ (:tag-index "tag/~a")
+ (:month-index "date/~a")
+ (:numeric-index "~d")
+ (:feed "~a.xml")
+ (:tag-feed "tag/~a.xml"))
+ :title "Improved Means for Achieving Deteriorated Ends" ;; a site title
+ :theme "oni" ;; to select one of the themes in "coleslaw/themes/"
+
+ ;; Optional information
+ :excerpt-sep "<!--more-->" ;; to set the separator for excerpt in content
+ :feeds ("lisp")
+ :plugins (; (incremental) ;; *Remove comment to enable incremental builds.
+ (mathjax)
+ (sitemap)
+ (static-pages)
+ ;; deployment plugins
+ ;; deployment to github pages
+ ; (gh-pages :url "git@github.com:myaccount/myrepo.git"
+ ; ; :cname t ;; if you want to use the custom domain --- see http://pages.github.com/
+ ; )
+ ;; versioned deployment. Remove comment to enable symlinked, timestamped deploys.
+ ; (versioned)
+ ;; default deploy method is rsync
+ (rsync "-avz" "--delete" "--exclude" ".git/" "--exclude" ".gitignore" "--copy-links")
+ )
+ :sitenav ((:url "http://NIL.github.com/" :name "Home")
+ (:url "http://twitter.com/NIL" :name "Twitter")
+ (:url "http://github.com/NIL" :name "Code")
+ (:url "http://soundcloud.com/NIL" :name "Music")
+ (:url "http://redlinernotes.com/docs/talks/" :name "Talks"))
+ :staging-dir "staging/" ;; for Coleslaw to do intermediate work, default: "/tmp/coleslaw"
+)
+
+;; * Prerequisites described in plugin docs.