<?php
-define('GARDEN_SITE_BASE_URL', 'https://bts.cx');
+// What is the URL of this website? (No trailing slash...)
+define('GARDEN_SITE_BASE_URL', 'http://localhost:8080');
+// Where is the markdown and other files that contain the content?
define('GARDEN_CONTENT_DIR', garden_path(__DIR__, 'content'));
+
+// Where are the templates?
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'));
-
-
// Put anything here you want the templates to be able to see...
+define('GARDEN_TEMPLATE_CONSTANTS', [
+ 'site_name' => 'garden',
+ 'site_language' => 'en',
+ 'site_copyline' => 'Content © Mr Fox',
+ 'site_author' => 'Mr Fox',
+
+ 'mastodon_link' => 'https://mastodon.website/@me',
+ 'mastodon_handle' => '@me',
-define('site_name', 'bts.cx');
+ 'itch_link' => 'https://itch.io',
+ 'itch_handle' => '@???.itch.io',
+]);