-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.coleslawrc
39 lines (37 loc) · 1.87 KB
/
.coleslawrc
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
;;; -*- mode : lisp -*-
(;; Required information
:author "plisp" ;; 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 "https://plisp.github.io/" ;; 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")
(:static "static/~a")
(:numeric-index "~d")
(:feed "~a.xml")
(:tag-feed "tag/~a.xml"))
:title "(gensym)" ;; a site title
:theme "blog" ;; 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 ((analytics :tracking-code "foo")
;;(disqus :shortname "my-site-name")
;(incremental) ;; *Remove comment to enable incremental builds.
(mathjax)
;;(sitemap)
(static-pages)
;; deployment plugins
;; deployment to github pages
(gh-pages :url "https://github.com/Plisp/plisp.github.io.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://github.com/plisp" :name "Github"))
:staging-dir "/tmp/coleslaw/" ;; for Coleslaw to do intermediate work, default: "/tmp/coleslaw"
)
;; * Prerequisites described in plugin docs.