Fix typos
This commit is contained in:
parent
d545e3b85f
commit
51d2614938
4 changed files with 11 additions and 6 deletions
5
site.hs
5
site.hs
|
@ -9,7 +9,7 @@ hakyllConfig :: Configuration
|
|||
hakyllConfig =
|
||||
defaultConfiguration
|
||||
{ deployCommand =
|
||||
"rsync -ave \"ssh\" _site/ ohqo@192.168.50.1:/var/www/htdocs/electriclam.com --delete"
|
||||
"rsync -ave ssh --rsync-path=/usr/bin/openrsync _site/ ohqo@192.168.50.1:/var/www/htdocs/electriclam.com --delete"
|
||||
}
|
||||
|
||||
pandocOptions :: WriterOptions
|
||||
|
@ -24,6 +24,9 @@ main =
|
|||
match "papers/*" $ do
|
||||
route idRoute
|
||||
compile copyFileCompiler
|
||||
match "images/favicon.ico" $ do
|
||||
route (constRoute "favicon.ico")
|
||||
compile copyFileCompiler
|
||||
match "index.org" $ do
|
||||
route $ setExtension "html"
|
||||
compile $ do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue