// 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',
'itch_link' => 'https://itch.io',
'itch_handle' => '@???.itch.io',
+
+ 'sidebar_links' => [
+ [ 'text' => 'git', 'url' => 'https://git-scm.com/' ],
+ ],
]);