From 56b83c76cbc1b8d257103982563a6690e36068a0 Mon Sep 17 00:00:00 2001 From: Mark Szymanski Date: Fri, 24 Jun 2011 17:45:55 -0500 Subject: [PATCH] Add new jekyll config stuff --- template/jekyllconfig.template.bash | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 template/jekyllconfig.template.bash diff --git a/template/jekyllconfig.template.bash b/template/jekyllconfig.template.bash new file mode 100644 index 0000000..e470518 --- /dev/null +++ b/template/jekyllconfig.template.bash @@ -0,0 +1,17 @@ +# This is a space-delimited list of your Jekyll project paths + +SITES="$HOME/sites/project_1 $HOME/sites/project_2" + +# This is another space-delimited list. +# This one is of the remote user@host:path location of your jekyll site +# NOTE: The locations of these must correspond to the locations +# of the sites in the first list +# For instance, the host for the first Jekyll site +# must be first in this list, the second second, etc. + +REMOTES="user@host_1:path user@host_2:path" + +# list of markup syntaxes to use for the sites, +# Same rules as above. Can be HTML, textile, or markdown + +MARKUPS="markdown textile" -- 2.17.1