17 lines
462 B
PHP
17 lines
462 B
PHP
<?php
|
|
|
|
define("PORTFOLIO_TITLE", "portfolio title");
|
|
define("PORTFOLIO_URL", "portfolio URL");
|
|
define("PORTFOLIO_LANGUAGE", "country code");
|
|
define("PORTFOLIO_CREATION_YEAR", 2023);
|
|
define("AUTHOR_NICKNAME", "portfolio author's nickname");
|
|
define("AUTHOR_REALNAME", "portfolio author's realname - optional, leave blank if none");
|
|
|
|
$links = [
|
|
"link id" => [
|
|
"label" => "label",
|
|
"url" => "https://example.com",
|
|
"self" => false
|
|
]
|
|
];
|