diff options
Diffstat (limited to 'ikiwiki.setup')
-rw-r--r-- | ikiwiki.setup | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ikiwiki.setup b/ikiwiki.setup index ec22c03..984713b 100644 --- a/ikiwiki.setup +++ b/ikiwiki.setup @@ -25,7 +25,7 @@ use IkiWiki::Setup::Standard { # users who are banned from the wiki banned_users => [], # where the source of the wiki is located - srcdir => $basedir . '/content', + srcdir => $basedir . '/content_dummy', # where to build the wiki destdir => $builddir . '/html', # base url to the wiki @@ -43,10 +43,14 @@ use IkiWiki::Setup::Standard { }], # plugins to disable disable_plugins => [qw{ + editpage }], # location of template files templatedir => $basedir . '/templates', # base wiki source location + underlaydirs => [ + $basedir . '/content', + ], underlaydir => $basedir . '/basewiki', # display verbose messages when building? #verbose => 1, @@ -55,7 +59,7 @@ use IkiWiki::Setup::Standard { # create output files named page/index.html? usedirs => 1, # use '!'-prefixed preprocessor directives? - prefix_directives => 0, + prefix_directives => 1, # use page/index.mdwn source files indexpages => 0, # enable Discussion pages? |