summaryrefslogtreecommitdiffstats
path: root/.coleslawrc
blob: 3e26fa807151f07f99d9d20db083ec21e0acda8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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.