added excerpt feature to config script
This commit is contained in:
parent
b439cf27d7
commit
54132c7218
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,8 @@ $themes = getDir('./themes');
|
|||
$yaml["design"]["theme"] = get("Which theme would you like to use? (" . $themes . ")", $yaml["design"]["theme"], "material-light");
|
||||
$yaml["design"]["pagination"] =
|
||||
get("Which posts should be displayed on one page (0 to disable)", $yaml["design"]["pagination"], "0");
|
||||
$yaml["design"]["excerpt"] =
|
||||
getBool("Should be overview pages only show a excerpt of the full posts? (on/off)", $yaml["design"]["excerpt"], "off");
|
||||
$yaml["design"]["favicon"] = get("URL to your favicon", $yaml["design"]["favicon"], "https://example.com/fav.ico");
|
||||
|
||||
// rcc
|
||||
|
|
Reference in a new issue