Kumi
bd29ffd43c
Introduced a new 'footer_links' configuration option allowing users to specify custom links to display in the footer. Each link includes 'text' and 'url'. This enhances the flexibility of the footer content, making it adaptable to various use cases. Updated the index.php to dynamically generate these footer links if they are set in the configuration, ensuring they are rendered appropriately along with existing links.
9 lines
No EOL
435 B
PHP
9 lines
No EOL
435 B
PHP
<?php
|
|
return [
|
|
'servers_guru' => true, // Show the "Servers Guru" attribution link in the info text
|
|
'attribution' => '', // Custom attribution HTML to show in the info text
|
|
'footer_links' => [ // Custom links to show in the footer
|
|
['text' => 'Clearnet', 'url' => 'https://calc.revuo-xmr.com'],
|
|
['text' => 'Tor', 'url' => 'http://calc.revuo75joezkbeitqmas4ab6spbrkr4vzbhjmeuv75ovrfqfp47mtjid.onion']
|
|
]
|
|
]; |