]> git.bts.cx Git - garden.git/blob - config.php
9ea6b10cc370b84fd5b57a4291a69531a1bfb0a5
[garden.git] / config.php
1 <?php
2
3 // What is the URL of this website? (No trailing slash...)
4 define('GARDEN_SITE_BASE_URL', 'http://localhost:8080');
5
6 // Where is the markdown and other files that contain the content?
7 define('GARDEN_CONTENT_DIR', garden_path(__DIR__, 'content'));
8
9 // Where are the templates?
10 define('GARDEN_TEMPLATE_DIR', garden_path(__DIR__, 'templates'));
11
12 // Where do you want to write the website to?
13 define('GARDEN_OUTPUT_DIR', garden_path(__DIR__, 'public'));
14
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 &copy; Mr Fox',
20         'site_author' => 'Mr Fox',
21
22         'mastodon_link' => 'https://mastodon.website/@me',
23         'mastodon_handle' => '@me',
24
25         'itch_link' => 'https://itch.io',
26         'itch_handle' => '@???.itch.io',
27 ]);