-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coleslawrc
36 lines (35 loc) · 1.85 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
;;; -*- mode : lisp -*-
(;; Required information
:author "Nikolai Matiushev" ;; to be placed on post pages and in the copyright/CC-BY-SA notice
:deploy-dir "docs/" ;; for Coleslaw's generated HTML to go in
:domain "https://egao1980.github.io/cl-blog" ;; 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 "All things Common Lisp" ;; a site title
:theme "brutal" ;; 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 (
(mathjax)
(sitemap)
(static-pages)
;; deployment plugins
;; deployment to github page
;; versioned deployment. Remove comment to enable symlinked, timestamped deploys.
; (versioned)
;; default deploy method is rsync
(robocopy "/MIR" "/IS" "/XD" ".git" "/XF" ".gitignore" "/SL")
)
:sitenav ((:url "http://github.com/egao1980" :name "Home")
(:url "https://www.linkedin.com/in/nikolai-matiushev-1958655" :name "Linkedin")
(:url "http://twitter.com/NickMatyushev" :name "Twitter")
(:url "http://github.com/egao1980/cl-blog" :name "Code"))
:staging-dir "c:/tmp/coleslaw/" ;; for Coleslaw to do intermediate work, default: "/tmp/coleslaw"
)
;; * Prerequisites described in plugin docs.