3 // What is the URL of this website? (No trailing slash...)
4 define('GARDEN_SITE_BASE_URL', 'http://localhost:8080');
6 // Where is the markdown and other files that contain the content?
7 define('GARDEN_CONTENT_DIR', garden_path(__DIR__, 'content'));
9 // Where are the templates?
10 define('GARDEN_TEMPLATE_DIR', garden_path(__DIR__, 'templates'));
12 // Where do you want to write the website to?
13 define('GARDEN_OUTPUT_DIR', garden_path(__DIR__, 'public'));
15 // Put anything here you want the templates to be able to see...
16 define('GARDEN_TEMPLATE_CONSTANTS', [
17 'site_name' => 'garden',
18 'site_language' => 'en',
19 'site_copyline' => 'Content © Mr Fox',
20 'site_author' => 'Mr Fox',
22 'mastodon_link' => 'https://mastodon.website/@me',
23 'mastodon_handle' => '@me',
25 'itch_link' => 'https://itch.io',
26 'itch_handle' => '@???.itch.io',