]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/underlay.pm
(no commit message)
[git.ikiwiki.info.git] / IkiWiki / Plugin / underlay.pm
index 380d418fba9919b3023e391bed3237406424f76a..51b7693334aa6a02448c3bcd8663ccb438fc1e01 100644 (file)
@@ -21,20 +21,27 @@ sub getsetup () {
                },
                add_underlays => {
                        type => "string",
-                       default => [],
+                       example => ["$ENV{HOME}/wiki.underlay"],
                        description => "extra underlay directories to add",
                        advanced => 1,
                        safe => 0,
                        rebuild => 1,
                },
+               add_templates => {
+                       type => "string",
+                       example => ["$ENV{HOME}/.ikiwiki/templates"],
+                       description => "extra template directories to add",
+                       advanced => 1,
+                       safe => 0,
+                       rebuild => 1,
+               },
 }
 
 sub checkconfig () {
-       return unless exists $config{add_underlays};
-
        foreach my $dir (@{$config{add_underlays}}) {
                add_underlay($dir);
        }
+       push @{$config{templatedirs}}, @{$config{add_templates}};
 }
 
 1;