X-Git-Url: https://git.bts.cx/garden.git/blobdiff_plain/f5a71df84db6381218d85fb323bdbdf168000df1..2812e275ef0f68ae484ec50fd954dd88225a2532:/config.php diff --git a/config.php b/config.php index 9ea6b10..074f8f3 100644 --- a/config.php +++ b/config.php @@ -12,6 +12,12 @@ define('GARDEN_TEMPLATE_DIR', garden_path(__DIR__, 'templates')); // Where do you want to write the website to? define('GARDEN_OUTPUT_DIR', garden_path(__DIR__, 'public')); +// Filename for the Atom feed +define('GARDEN_ATOM_FEED_FILENAME', 'feed.atom'); + +// Filename for the JSON feed +define('GARDEN_JSON_FEED_FILENAME', 'feed.json'); + // Put anything here you want the templates to be able to see... define('GARDEN_TEMPLATE_CONSTANTS', [ 'site_name' => 'garden', @@ -24,4 +30,8 @@ define('GARDEN_TEMPLATE_CONSTANTS', [ 'itch_link' => 'https://itch.io', 'itch_handle' => '@???.itch.io', + + 'sidebar_links' => [ + [ 'text' => 'git', 'url' => 'https://git-scm.com/' ], + ], ]);