16 lines
458 B
PHP
16 lines
458 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require_once __DIR__ . '/includes/bootstrap.php';
|
|
|
|
website_render(
|
|
'pricing.php',
|
|
[
|
|
'activePage' => 'pricing',
|
|
'pageTitle' => 'Pricing - Gameservers.World',
|
|
'metaDescription' => 'Standard game hosting pricing plus honest guidance on separately quoted custom development and integration work.',
|
|
'canonicalPath' => 'pricing.php',
|
|
'services' => website_fetch_services(),
|
|
]
|
|
);
|