This repository has been archived on 2022-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
socialtree-jigsaw/config.php.example

35 lines
863 B
Text
Raw Normal View History

2022-04-30 21:41:25 +01:00
<?php
return [
'production' => false,
'baseUrl' => '',
'title' => 'Socialtree',
'author' => 'Nikurasu',
'design' => 'main',
'description' => 'A simple website to display links to social media accounts',
'collections' => [],
'imageName' => 'example.jpg',
'links' => [
[
'color' => 'youtube',
'link' => 'https://youtube.com',
2022-05-01 17:47:42 +01:00
'text' => 'YouTube',
2022-04-30 21:41:25 +01:00
'platform' => 'youtube'
],
[
'link' => 'https://twitter.com',
2022-05-01 17:47:42 +01:00
'platform' => 'soundcloud'
2022-04-30 21:41:25 +01:00
],
[
'link' => 'https://deviantart.com',
2022-05-01 17:47:42 +01:00
'platform' => 'flickr',
'text' => 'Reddit'
2022-04-30 21:41:25 +01:00
],
[
2022-05-01 17:47:42 +01:00
'color' => 'mastodon',
'link' => 'https://catcatnya.com',
2022-04-30 21:41:25 +01:00
'platform' => 'mastodon'
]
],
];