2023-09-04 21:13:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
define("BLOG_TITLE", "blog title");
|
|
|
|
define("BLOG_SUB_TITLE", "blog sub title - optional, leave blank if none");
|
|
|
|
define("BLOG_LANGUAGE", "country code");
|
|
|
|
define("BLOG_CREATION_YEAR", 2023);
|
2023-09-08 09:18:51 +02:00
|
|
|
define("AUTHOR_NICKNAME", "blog author's nickname");
|
|
|
|
define("AUTHOR_REALNAME", "blog author's real name - optional, leave blank if none");
|
|
|
|
define("AUTHOR_BIOGRAPHY", "blog author's biography");
|
2023-09-04 21:13:29 +02:00
|
|
|
define("ARTICLE_COUNT_IN_NAV", 10);
|
|
|
|
|
|
|
|
$links = [
|
|
|
|
"link label" => "https://example.com"
|
|
|
|
];
|