20 lines
645 B
PHP
20 lines
645 B
PHP
<?php
|
|
|
|
// WARNING: This file is provided for convenience, not security.
|
|
// This file is NOT meant to keep secret information or credentials of any kind.
|
|
// The settings below are benign, but please don't add custom variables in here
|
|
// unless you know what you're doing.
|
|
|
|
define('BLOG_TITLE', 'Ty\'s List (of blurbs)');
|
|
|
|
// URL of the homepage. Can be absolute or relative.
|
|
define('BASE_URL', '/i/');
|
|
|
|
// Contact email is shown as a link in the footer.
|
|
define('CONTACT_EMAIL', 'ty@tyclifford.com');
|
|
|
|
// The type of files used for your content. Usually 'md' or 'txt'
|
|
define('FILE_EXT', 'md');
|
|
|
|
// light or dark mode
|
|
define('APPEARANCE', 'dark'); |