]> git.bts.cx Git - garden.git/blobdiff - config.php
Better configuration
[garden.git] / config.php
index 9ea6b10cc370b84fd5b57a4291a69531a1bfb0a5..074f8f378e59a1bff3f8ad9d20aec2ddee444c5d 100644 (file)
@@ -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/' ],
+       ],
 ]);