23 lines
625 B
PHP
23 lines
625 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
// The title of the site.
|
||
|
|
define('TITLE', "My Links");
|
||
|
|
|
||
|
|
// The path to a favicon to use for the site.
|
||
|
|
define('ICON', 'images/littlelink.png');
|
||
|
|
|
||
|
|
// The path to an avatar image to display on the site.
|
||
|
|
define('AVATAR', 'images/littlelink.svg');
|
||
|
|
|
||
|
|
// The path to a stylesheet to use for the site.
|
||
|
|
define('STYLESHEET', 'css/skeleton-auto.css');
|
||
|
|
|
||
|
|
// The base URL of the Shlink instance.
|
||
|
|
define('SHLINK_BASE_URL', 'https://example.com');
|
||
|
|
|
||
|
|
// The Shlink API key.
|
||
|
|
define('SHLINK_API_KEY', 'cec2f62c-b119-452a-b351-a416a2f5f45a');
|
||
|
|
|
||
|
|
// The Shlink tag put on short links to be displayed on the site.
|
||
|
|
define('SHLINK_TAG', 'index');
|